]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/automated/cl-lib-tests.el (cl-lib-adjoin-test): Fix it.
authorGlenn Morris <rgm@gnu.org>
Fri, 1 May 2015 18:09:06 +0000 (14:09 -0400)
committerGlenn Morris <rgm@gnu.org>
Fri, 1 May 2015 18:09:06 +0000 (14:09 -0400)
test/automated/cl-lib-tests.el

index d272f3a5ee2d0d1a6988a95fae3db87682635a6b..ece1d45cae0eb8e5d69ab072c5be2cedba197874 100644 (file)
     ;;(should-error (cl-adjoin 3 nums :test 'myfn-p :test-not myfn-p))
 
     ;; own :key fn
-    (should (eq nums (cl-adjoin 3 nums :key (lambda (x) (if (evenp x) (1+ x) x)))))
-    (should (equal '(3 1 2) (cl-adjoin 3 nums :key (lambda (x) (if (evenp x) (+ 2 x) x)))))
+    (should (eq nums (cl-adjoin 3 nums :key (lambda (x) (if (cl-evenp x) (1+ x) x)))))
+    (should (equal '(3 1 2) (cl-adjoin 3 nums :key (lambda (x) (if (cl-evenp x) (+ 2 x) x)))))
 
     ;; convert using :key, then compare with :test
     (should (eq nums (cl-adjoin 1 nums :key 'int-to-string :test 'string=)))