aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/function/mutual.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/control/function/mutual.lux')
-rw-r--r--stdlib/source/test/lux/control/function/mutual.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/test/lux/control/function/mutual.lux b/stdlib/source/test/lux/control/function/mutual.lux
index 8f6a7069d..25ffaec75 100644
--- a/stdlib/source/test/lux/control/function/mutual.lux
+++ b/stdlib/source/test/lux/control/function/mutual.lux
@@ -19,7 +19,7 @@
(def test_let
Test
(do [! random.monad]
- [sample (at ! each (n.% 10) random.nat)
+ [sample (of ! each (n.% 10) random.nat)
.let [expected (n.even? sample)]]
(<| (_.coverage [/.let])
(/.let [(even? number)
@@ -52,7 +52,7 @@
(def test_def
Test
(do [! random.monad]
- [sample (at ! each (n.% 10) random.nat)
+ [sample (of ! each (n.% 10) random.nat)
.let [expected (n.even? sample)]]
(<| (_.coverage [/.def])
(and (bit#= expected (..even? sample))