Skip to content

Commit

Permalink
Fix monad-test imports
Browse files Browse the repository at this point in the history
  • Loading branch information
drewc committed Aug 31, 2024
1 parent f6758b5 commit 7e8d204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/std/monad-test.ss
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
((_ test-case: name rest ...)
#'(test-case name (test-inline rest ...)))
((_ > form > rest ...)
#'(begin (when *test-versbose* (displayln "... " 'form)) form (test-inline > rest ...)))
#'(begin (when std/test#*test-versbose* (displayln "... " 'form)) form (test-inline > rest ...)))
((_ > test result rest ...)
#'(begin (check test => 'result) (test-inline rest ...)))
((_) #!void)))
Expand Down

0 comments on commit 7e8d204

Please sign in to comment.