aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/world/locale.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/world/locale.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/world/locale.lux b/stdlib/source/test/lux/world/locale.lux
index 92510dd26..73dd6ddd2 100644
--- a/stdlib/source/test/lux/world/locale.lux
+++ b/stdlib/source/test/lux/world/locale.lux
@@ -3,8 +3,8 @@
[lux (.except)
[abstract
[monad (.only do)]
- [\\specification
- ["$[0]" hash]]
+ ["[0]" hash
+ ["[1]T" \\test]]
["[0]" equivalence
["[1]T" \\test]]]
[math
@@ -63,15 +63,15 @@
(|> ..random_language
(of ! each (function (_ language)
(/.locale language {.#Some fixed_territory} {.#Some fixed_encoding})))
- ($hash.spec /.hash))
+ (hashT.spec /.hash))
(|> ..random_territory
(of ! each (function (_ territory)
(/.locale fixed_language {.#Some territory} {.#Some fixed_encoding})))
- ($hash.spec /.hash))
+ (hashT.spec /.hash))
(|> ..random_encoding
(of ! each (function (_ encoding)
(/.locale fixed_language {.#Some fixed_territory} {.#Some encoding})))
- ($hash.spec /.hash))
+ (hashT.spec /.hash))
)))
(do random.monad