aboutsummaryrefslogtreecommitdiff
path: root/examples/examples.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/examples.lisp')
-rw-r--r--examples/examples.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/examples.lisp b/examples/examples.lisp
index d437826..99ad26e 100644
--- a/examples/examples.lisp
+++ b/examples/examples.lisp
@@ -46,9 +46,9 @@ tests that aren't part of the package you're testing."
#+testiere
(:tests
(:let ((*count* 5))
- (:funcall #'increment-count)
+ (:do (increment-count))
(= *count* 6)
- (:funcall #'increment-count 4)
+ (:do (increment-count 4))
(= *count* 10))
(:let ((*count* -10))
(= (increment-count) -9)))