aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/world/program.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/world/program.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/world/program.lux b/stdlib/source/test/lux/world/program.lux
index e5909bcba..f65951af0 100644
--- a/stdlib/source/test/lux/world/program.lux
+++ b/stdlib/source/test/lux/world/program.lux
@@ -7,13 +7,13 @@
[control
[pipe {"+" [case>]}]
["[0]" io]
- ["[0]" maybe ("[1]\[0]" functor)]
+ ["[0]" maybe ("[1]#[0]" functor)]
["[0]" try]
["[0]" exception]
[parser
[environment {"+" [Environment]}]]]
[data
- ["[0]" text ("[1]\[0]" equivalence)]
+ ["[0]" text ("[1]#[0]" equivalence)]
[collection
["[0]" dictionary]
["[0]" list]]]
@@ -42,7 +42,7 @@
Test
(<| (_.covering /._)
(do [! random.monad]
- [env_size (\ ! each (|>> (n.% 10) ++) random.nat)
+ [env_size (# ! each (|>> (n.% 10) ++) random.nat)
environment (..environment env_size)
home ..path
directory ..path
@@ -63,12 +63,12 @@
(list.every? (function (_ [key value])
(|> environment
(dictionary.value key)
- (maybe\each (text\= value))
+ (maybe#each (text#= value))
(maybe.else false)))))))))))
(_.cover [/.unknown_environment_variable]
(let [program (/.mock environment home directory)]
(|> unknown
- (\ program variable)
+ (# program variable)
io.run!
(case> {try.#Success _}
false