]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some errors in recently added tests
authorGlenn Morris <rgm@gnu.org>
Tue, 3 Mar 2015 17:00:12 +0000 (09:00 -0800)
committerGlenn Morris <rgm@gnu.org>
Tue, 3 Mar 2015 17:00:12 +0000 (09:00 -0800)
* test/automated/generator-tests.el (cps-while-incf):
Replace undefined incf with cl-incf.
(cps-test-iter-do): Use should not undefined assert.

test/ChangeLog
test/automated/generator-tests.el

index 3a311e97aa5a88681f238a089f05ce4a72a557b3..d8d3fc80f06fb85eae2bfacdabad618210941308 100644 (file)
@@ -1,3 +1,9 @@
+2015-03-03  Glenn Morris  <rgm@gnu.org>
+
+       * automated/generator-tests.el (cps-while-incf):
+       Replace undefined incf with cl-incf.
+       (cps-test-iter-do): Use should not undefined assert.
+
 2015-03-03  Daniel Colascione  <dancol@dancol.org>
 
        * automated/finalizer-tests.el (finalizer-object-type): Test that
index 875255ff11a569c8ebdfb46a2683b91cca473de0..0721009d70ba3c7c73507e70518e9f470e072b66 100644 (file)
@@ -109,7 +109,7 @@ identical output.
 (cps-testcase cps-while-incf
  (let* ((i 0) (j 10))
    (while (< i 10)
-     (incf i)
+     (cl-incf i)
      (setf j (+ j (* i 10))))
    j))
 
@@ -202,8 +202,7 @@ identical output.
   (let (mylist)
     (iter-do (x (mygenerator 4))
       (push x mylist))
-
-    (assert (equal mylist '(2 4 1)))))
+    (should (equal mylist '(2 4 1)))))
 
 (iter-defun gen-using-yield-value ()
   (let (f)