aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/locale.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/locale.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/test/lux/locale.lux b/stdlib/source/test/lux/locale.lux
index afc69ea50..3c37647aa 100644
--- a/stdlib/source/test/lux/locale.lux
+++ b/stdlib/source/test/lux/locale.lux
@@ -59,16 +59,16 @@
fixed_encoding ..random_encoding]
($_ _.and
(|> ..random_language
- (\ ! map (function (_ language)
- (/.locale language (#.Some fixed_territory) (#.Some fixed_encoding))))
+ (\ ! each (function (_ language)
+ (/.locale language (#.Some fixed_territory) (#.Some fixed_encoding))))
($hash.spec /.hash))
(|> ..random_territory
- (\ ! map (function (_ territory)
- (/.locale fixed_language (#.Some territory) (#.Some fixed_encoding))))
+ (\ ! each (function (_ territory)
+ (/.locale fixed_language (#.Some territory) (#.Some fixed_encoding))))
($hash.spec /.hash))
(|> ..random_encoding
- (\ ! map (function (_ encoding)
- (/.locale fixed_language (#.Some fixed_territory) (#.Some encoding))))
+ (\ ! each (function (_ encoding)
+ (/.locale fixed_language (#.Some fixed_territory) (#.Some encoding))))
($hash.spec /.hash))
)))