summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2015-03-03 13:27:21 -0500
committerGlenn Morris <rgm@gnu.org>2015-03-03 13:27:21 -0500
commit88f8a9d7d827b3780ae25e99b67e01d897fd5959 (patch)
tree2e983a82c5e1b1c685961bfc96cdede0a39a3ecd /test
parent15ddf7a6f211545b34f22bbab286df91e391b5aa (diff)
downloademacs-88f8a9d7d827b3780ae25e99b67e01d897fd5959.tar.gz
generator-tests.el: make cps-test-iter-cleanup-once-only work
* test/automated/generator-tests.el (cps-test-iter-cleanup-once-only): Replace undefined incf with cl-incf.
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog4
-rw-r--r--test/automated/generator-tests.el2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index 6ff35afa66b..ea2e0eef179 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -9,8 +9,8 @@
2015-03-03 Glenn Morris <rgm@gnu.org>
- * automated/generator-tests.el (cps-while-incf):
- Replace undefined incf with cl-incf.
+ * automated/generator-tests.el (cps-while-incf)
+ (cps-test-iter-cleanup-once-only): Replace undefined incf with cl-incf.
(cps-test-iter-do): Use should not undefined assert.
2015-03-03 Daniel Colascione <dancol@dancol.org>
diff --git a/test/automated/generator-tests.el b/test/automated/generator-tests.el
index a8607f9274d..893c0d2e724 100644
--- a/test/automated/generator-tests.el
+++ b/test/automated/generator-tests.el
@@ -283,7 +283,7 @@ identical output.
(iter-yield 1)
(error "test")
(iter-yield 2))
- (incf nr-unwound))))))
+ (cl-incf nr-unwound))))))
(should (equal (iter-next iter) 1))
(should-error (iter-next iter))
(should (equal nr-unwound 1))))