aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/maybe.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/control/maybe.lux')
-rw-r--r--stdlib/source/test/lux/control/maybe.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/control/maybe.lux b/stdlib/source/test/lux/control/maybe.lux
index 5d9a04a0b..6f4213268 100644
--- a/stdlib/source/test/lux/control/maybe.lux
+++ b/stdlib/source/test/lux/control/maybe.lux
@@ -49,10 +49,10 @@
[left random.nat
right random.nat
.let [expected (n.+ left right)]]
- (let [lift (/.lift io.monad)]
- (_.cover [/.with /.lift]
+ (let [lifted (/.lifted io.monad)]
+ (_.cover [/.with /.lifted]
(|> (io.run! (do (/.with io.monad)
- [a (lift (io\in left))
+ [a (lifted (io\in left))
b (in right)]
(in (n.+ a b))))
(case> (#.Some actual)
@@ -71,8 +71,8 @@
(#.Some value))))))
(do random.monad
[value random.nat]
- (_.cover [/.assume]
- (same? value (/.assume (#.Some value)))))
+ (_.cover [/.trusted]
+ (same? value (/.trusted (#.Some value)))))
(do random.monad
[value random.nat]
(_.cover [/.list]