aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/collection/dictionary/ordered.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/data/collection/dictionary/ordered.lux')
-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 fb57cd70e..13971ad88 100644
--- a/stdlib/source/test/lux/data/collection/dictionary/ordered.lux
+++ b/stdlib/source/test/lux/data/collection/dictionary/ordered.lux
@@ -22,7 +22,7 @@
[\\library
["." /]])
-(def: #export (dictionary order gen_key gen_value size)
+(def: .public (dictionary order gen_key gen_value size)
(All [k v]
(-> (Order k) (Random k) (Random v) Nat (Random (/.Dictionary k v))))
(case size
@@ -37,7 +37,7 @@
value gen_value]
(in (/.put key value partial)))))
-(def: #export test
+(def: .public test
Test
(<| (_.covering /._)
(_.for [/.Dictionary])