diff options
Diffstat (limited to 'test/lisp/emacs-lisp/cl-extra-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/cl-extra-tests.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/lisp/emacs-lisp/cl-extra-tests.el b/test/lisp/emacs-lisp/cl-extra-tests.el index 75533b36f29..c524f77f2bb 100644 --- a/test/lisp/emacs-lisp/cl-extra-tests.el +++ b/test/lisp/emacs-lisp/cl-extra-tests.el @@ -228,14 +228,14 @@ nil))) (ert-deftest cl-extra-test-notany () - (should (equal (cl-notany #'cl-oddp '(1 3 5)) nil)) - (should (equal (cl-notany #'cl-oddp '(2 4 6)) t)) - (should (equal (cl-notany #'cl-oddp '(1 2 3 4 5)) nil))) + (should (equal (cl-notany #'oddp '(1 3 5)) nil)) + (should (equal (cl-notany #'oddp '(2 4 6)) t)) + (should (equal (cl-notany #'oddp '(1 2 3 4 5)) nil))) (ert-deftest cl-extra-test-notevery () - (should (equal (cl-notevery #'cl-oddp '(1 3 5)) nil)) - (should (equal (cl-notevery #'cl-oddp '(2 4 6)) t)) - (should (equal (cl-notevery #'cl-oddp '(1 2 3 4 5)) t))) + (should (equal (cl-notevery #'oddp '(1 3 5)) nil)) + (should (equal (cl-notevery #'oddp '(2 4 6)) t)) + (should (equal (cl-notevery #'oddp '(1 2 3 4 5)) t))) (ert-deftest cl-extra-test-gcd () (should (equal (cl-gcd 4) 4)) |