diff options
Diffstat (limited to 'stdlib/test')
-rw-r--r-- | stdlib/test/test/lux/data/coll/dictionary/ordered.lux (renamed from stdlib/test/test/lux/data/coll/dict/ordered.lux) | 4 | ||||
-rw-r--r-- | stdlib/test/test/lux/data/coll/dictionary/unordered.lux (renamed from stdlib/test/test/lux/data/coll/dict/unordered.lux) | 2 | ||||
-rw-r--r-- | stdlib/test/test/lux/data/format/json.lux | 2 | ||||
-rw-r--r-- | stdlib/test/test/lux/data/format/xml.lux | 2 | ||||
-rw-r--r-- | stdlib/test/test/lux/lang/syntax.lux | 2 | ||||
-rw-r--r-- | stdlib/test/test/lux/math/random.lux | 2 | ||||
-rw-r--r-- | stdlib/test/tests.lux | 4 |
7 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/test/test/lux/data/coll/dict/ordered.lux b/stdlib/test/test/lux/data/coll/dictionary/ordered.lux index 73a1ebcad..041e27484 100644 --- a/stdlib/test/test/lux/data/coll/dict/ordered.lux +++ b/stdlib/test/test/lux/data/coll/dictionary/ordered.lux @@ -6,8 +6,8 @@ (data [product] [number] (coll (set ["s" unordered]) - (dict ["dict" unordered] - ["&" ordered]) + (dictionary ["dict" unordered] + ["&" ordered]) [list "L/" Functor<List>])) ["r" math/random]) lux/test) diff --git a/stdlib/test/test/lux/data/coll/dict/unordered.lux b/stdlib/test/test/lux/data/coll/dictionary/unordered.lux index 73b0df822..8c6ea275e 100644 --- a/stdlib/test/test/lux/data/coll/dict/unordered.lux +++ b/stdlib/test/test/lux/data/coll/dictionary/unordered.lux @@ -7,7 +7,7 @@ text/format [number] [maybe] - (coll (dict ["&" unordered]) + (coll (dictionary ["&" unordered]) [list "list/" Fold<List> Functor<List>])) ["r" math/random]) lux/test) diff --git a/stdlib/test/test/lux/data/format/json.lux b/stdlib/test/test/lux/data/format/json.lux index d302c63b0..9e1930f3f 100644 --- a/stdlib/test/test/lux/data/format/json.lux +++ b/stdlib/test/test/lux/data/format/json.lux @@ -14,7 +14,7 @@ [number] (format ["@" json]) (coll [sequence #+ sequence] - (dict ["d" unordered]) + (dictionary ["d" unordered]) [list])) [macro #+ with-gensyms] (macro [code] diff --git a/stdlib/test/test/lux/data/format/xml.lux b/stdlib/test/test/lux/data/format/xml.lux index 80ac5bcb1..d70b911dc 100644 --- a/stdlib/test/test/lux/data/format/xml.lux +++ b/stdlib/test/test/lux/data/format/xml.lux @@ -10,7 +10,7 @@ ["E" error] [maybe] (format ["&" xml]) - (coll (dict ["dict" unordered]) + (coll (dictionary ["dict" unordered]) [list "list/" Functor<List>])) ["r" math/random "r/" Monad<Random>] test) diff --git a/stdlib/test/test/lux/lang/syntax.lux b/stdlib/test/test/lux/lang/syntax.lux index 49967e071..4e6bed9bc 100644 --- a/stdlib/test/test/lux/lang/syntax.lux +++ b/stdlib/test/test/lux/lang/syntax.lux @@ -8,7 +8,7 @@ (text format ["l" lexer]) (coll [list] - (dict ["dict" unordered #+ Dict]))) + (dictionary ["dict" unordered #+ Dict]))) ["r" math/random "r/" Monad<Random>] (macro [code]) (lang ["&" syntax]) diff --git a/stdlib/test/test/lux/math/random.lux b/stdlib/test/test/lux/math/random.lux index 45c83016c..4230f27b1 100644 --- a/stdlib/test/test/lux/math/random.lux +++ b/stdlib/test/test/lux/math/random.lux @@ -10,7 +10,7 @@ [queue] [stack] (set ["set" unordered]) - (dict ["dict" unordered]))) + (dictionary ["dict" unordered]))) (math ["r" random])) lux/test) diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux index 2c462e248..7351c8746 100644 --- a/stdlib/test/tests.lux +++ b/stdlib/test/tests.lux @@ -43,8 +43,8 @@ ["_." xml]) (coll ["_." array] ["_." bits] - ["_." dict/unordered] - ["_." dict/ordered] + ["_." dictionary/unordered] + ["_." dictionary/ordered] ["_." list] ["_." queue] ["_." set/unordered] |