diff options
author | colin <colin@cicadas.surf> | 2023-09-10 07:24:34 -0700 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-09-10 07:24:34 -0700 |
commit | 6be426978c86bc7a061cc66c8fda738be2e59a16 (patch) | |
tree | 1c7c007707f6976a45785cd56134cf2448c0d6fc /examples | |
parent | a5615cba16837146573230a453632bd2f88ac1b1 (diff) |
Added :do
Diffstat (limited to 'examples')
-rw-r--r-- | examples/examples.lisp | 4 |
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))) |