aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/test.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/test.lux')
-rw-r--r--stdlib/source/library/lux/test.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/library/lux/test.lux b/stdlib/source/library/lux/test.lux
index 6aebcaadc..ea228316a 100644
--- a/stdlib/source/library/lux/test.lux
+++ b/stdlib/source/library/lux/test.lux
@@ -306,10 +306,10 @@
(loop [remaining encoding
output (set.of_list name.hash (list))]
(case (text.split_by ..coverage_separator remaining)
- {#.Some [head tail]}
+ {.#Some [head tail]}
(recur tail (set.has [module head] output))
- #.None
+ {.#None}
(set.has [module remaining] output))))
(template [<macro> <function>]
@@ -353,9 +353,9 @@
.let [coverage (|> definitions
(list\mix (function (_ [short [exported? _]] aggregate)
(if exported?
- {#.Item short aggregate}
+ {.#Item short aggregate}
aggregate))
- #.End)
+ {.#End})
..encoded_coverage)]]
(in (list (` ((~! ..covering')
(~ (code.text module))
@@ -381,10 +381,10 @@
product.right
(function (_ _))
"lux try"
- (case> {#try.Success output}
+ (case> {try.#Success output}
output
- {#try.Failure error}
+ {try.#Failure error}
(..assertion (exception.error ..error_during_execution [error]) false))
io.io
async.future