diff options
author | Colin Okay <colin@cicadas.surf> | 2022-09-07 10:19:19 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-09-07 10:19:19 -0500 |
commit | 4c37dacc4f9af57b06b9cabf44e99359f21d21e2 (patch) | |
tree | bbd2f71030128f521802d398278670a8dc2c1bbd | |
parent | 87db1dfd5f878ee9f52b8e4f19958abfef058b6c (diff) |
Change: :with-bindings to :let
-rw-r--r-- | testiere.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testiere.lisp b/testiere.lisp index ea22b80..3963351 100644 --- a/testiere.lisp +++ b/testiere.lisp @@ -39,7 +39,7 @@ ,@redef-forms ,@(mapcar (lambda (s) (build-test name s)) more-specs)) ,@clean-up)))) - ((list* :with-bindings bindings more-specs) + ((list* :let bindings more-specs) `(let ,bindings ,@(mapcar (lambda (s) (build-test name s)) more-specs))) ((list :afterp inputs thunk-test) |