aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/test.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/test.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/test.lux b/stdlib/source/lux/test.lux
index 96535b886..003eb29af 100644
--- a/stdlib/source/lux/test.lux
+++ b/stdlib/source/lux/test.lux
@@ -259,7 +259,7 @@
(code.text (name.short name)))))
(syntax: (reference {name <c>.identifier})
- (do @
+ (do macro.monad
[_ (macro.find-export name)]
(wrap (list (name-code name)))))
@@ -298,7 +298,7 @@
(syntax: #export (covering {module <c>.identifier}
test)
- (do @
+ (do macro.monad
[#let [module (name.module module)]
definitions (macro.definitions module)
#let [coverage (|> definitions
@@ -322,7 +322,7 @@
io.io
promise.future
promise@join)))]]
- (wrap (do promise.monad
+ (wrap (do {@ promise.monad}
[assertions (monad.seq @ (list@map run! tests))]
(wrap [(|> assertions
(list@map product.left)