aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/math/number.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/math/number.lux')
-rw-r--r--stdlib/source/test/lux/math/number.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/test/lux/math/number.lux b/stdlib/source/test/lux/math/number.lux
index d5d9fb557..536448d48 100644
--- a/stdlib/source/test/lux/math/number.lux
+++ b/stdlib/source/test/lux/math/number.lux
@@ -35,7 +35,7 @@
(all _.and
(_.coverage [/.bin]
(`` (and (,, (with_template [<=> <codec> <number>]
- [(case (at <codec> decoded (..clean_commas <number>))
+ [(when (at <codec> decoded (..clean_commas <number>))
{try.#Success actual}
(<=> (/.bin <number>) actual)
@@ -54,7 +54,7 @@
)))))
(_.coverage [/.oct]
(`` (and (,, (with_template [<=> <codec> <number>]
- [(case (at <codec> decoded (..clean_commas <number>))
+ [(when (at <codec> decoded (..clean_commas <number>))
{try.#Success actual}
(<=> (/.oct <number>) actual)
@@ -73,7 +73,7 @@
)))))
(_.coverage [/.hex]
(`` (and (,, (with_template [<=> <codec> <number>]
- [(case (at <codec> decoded (..clean_commas <number>))
+ [(when (at <codec> decoded (..clean_commas <number>))
{try.#Success actual}
(<=> (/.hex <number>) actual)