aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/test.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/test.lux')
-rw-r--r--stdlib/source/test/lux/test.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/test/lux/test.lux b/stdlib/source/test/lux/test.lux
index d7c05641c..45dc68c97 100644
--- a/stdlib/source/test/lux/test.lux
+++ b/stdlib/source/test/lux/test.lux
@@ -32,8 +32,8 @@
/.Test
(do {! random.monad}
[expected_message/0 (random.ascii/lower 5)
- expected_message/1 (random.filter (|>> (text\= expected_message/0) not)
- (random.ascii/lower 5))]
+ expected_message/1 (random.only (|>> (text\= expected_message/0) not)
+ (random.ascii/lower 5))]
($_ /.and
(wrap (do promise.monad
[[success_tally success_message] (/.assert expected_message/0 true)
@@ -221,10 +221,10 @@
(/.for [/.Test])
(do {! random.monad}
[expected_context (random.ascii/lower 5)
- expected_message/0 (random.filter (|>> (text\= expected_context) not)
- (random.ascii/lower 5))
- expected_message/1 (random.filter (|>> (text\= expected_message/0) not)
- (random.ascii/lower 5))]
+ expected_message/0 (random.only (|>> (text\= expected_context) not)
+ (random.ascii/lower 5))
+ expected_message/1 (random.only (|>> (text\= expected_message/0) not)
+ (random.ascii/lower 5))]
($_ /.and
(/.for [/.Assertion]
..assertion)