aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/collection/dictionary/ordered.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/data/collection/dictionary/ordered.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/test/lux/data/collection/dictionary/ordered.lux b/stdlib/source/test/lux/data/collection/dictionary/ordered.lux
index 19c6bfde6..0b98204a9 100644
--- a/stdlib/source/test/lux/data/collection/dictionary/ordered.lux
+++ b/stdlib/source/test/lux/data/collection/dictionary/ordered.lux
@@ -27,7 +27,7 @@
(-> (Order k) (Random k) (Random v) Nat (Random (/.Dictionary k v))))
(case size
0
- (random\wrap (/.new order))
+ (random\in (/.new order))
_
(do random.monad
@@ -35,7 +35,7 @@
key (random.only (|>> (/.key? partial) not)
gen_key)
value gen_value]
- (wrap (/.put key value partial)))))
+ (in (/.put key value partial)))))
(def: #export test
Test