diff options
Diffstat (limited to 'test/src/fns-tests.el')
-rw-r--r-- | test/src/fns-tests.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/src/fns-tests.el b/test/src/fns-tests.el index 6ebab4287f7..a9d4d11795c 100644 --- a/test/src/fns-tests.el +++ b/test/src/fns-tests.el @@ -614,7 +614,8 @@ (should (eq x x)) (should (eql x y)) (should (equal x y)) - (should-not (eql x 0.0e+NaN)))) + (should-not (eql x 0.0e+NaN)) + (should (memql x (list y))))) (ert-deftest test-bignum-hash () "Test that hash tables work for bignums." |