diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/test/lux/data/coll/queue/priority.lux (renamed from stdlib/test/test/lux/data/coll/priority-queue.lux) | 2 | ||||
-rw-r--r-- | stdlib/test/tests.lux | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/test/test/lux/data/coll/priority-queue.lux b/stdlib/test/test/lux/data/coll/queue/priority.lux index 00238dc63..2ccb58ec4 100644 --- a/stdlib/test/test/lux/data/coll/priority-queue.lux +++ b/stdlib/test/test/lux/data/coll/queue/priority.lux @@ -2,7 +2,7 @@ lux (lux [io] (control [monad #+ do Monad]) - (data (coll ["&" priority-queue]) + (data (coll (queue ["&" priority])) [number] [maybe]) ["r" math/random]) diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux index 7351c8746..a25d419bc 100644 --- a/stdlib/test/tests.lux +++ b/stdlib/test/tests.lux @@ -43,16 +43,16 @@ ["_." xml]) (coll ["_." array] ["_." bits] - ["_." dictionary/unordered] - ["_." dictionary/ordered] ["_." list] - ["_." queue] - ["_." set/unordered] - ["_." set/ordered] ["_." stack] ["_." sequence] - ["_." priority-queue] ["_." stream] + ["_." dictionary/unordered] + ["_." dictionary/ordered] + ["_." set/unordered] + ["_." set/ordered] + ["_." queue] + (queue ["_." priority]) (tree ["tree_." rose] ["tree_." zipper])) (text ["_." format] |