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 0449a12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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-verbose* (displayln "... " 'form)) form (test-inline > rest ...)))
((_ > test result rest ...)
#'(begin (check test => 'result) (test-inline rest ...)))
((_) #!void)))
Expand Down
2 changes: 1 addition & 1 deletion src/std/monad/README.org
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ This is after state in the train of thought so is defined here.
((_ test-case: name rest ...)
#'(test-case name (test-inline rest ...)))
((_ > form > rest ...)
#'(begin (when std/test#*test-versbose* (displayln "... " 'form)) form (test-inline > rest ...)))
#'(begin (when std/test#*test-verbose* (displayln "... " 'form)) form (test-inline > rest ...)))
((_ > test result rest ...)
#'(begin (check test => 'result) (test-inline rest ...)))
((_) #!void)))
Expand Down

0 comments on commit 0449a12

Please sign in to comment.