aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/exception.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/control/exception.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/test/lux/control/exception.lux b/stdlib/source/test/lux/control/exception.lux
index db97197e3..2075913a5 100644
--- a/stdlib/source/test/lux/control/exception.lux
+++ b/stdlib/source/test/lux/control/exception.lux
@@ -5,7 +5,7 @@
[data
[number
["n" nat]]
- ["." text ("#@." equivalence)
+ ["." text ("#\." equivalence)
["%" format (#+ format)]]]
[math
["." random]]
@@ -50,7 +50,7 @@
false
(#try.Failure message)
- (text@= message (/.construct ..an-exception []))))
+ (text\= message (/.construct ..an-exception []))))
(_.cover [/.match?]
(/.match? ..an-exception
(/.construct ..an-exception [])))
@@ -61,7 +61,7 @@
(#try.Failure message)
(and (not assertion-succeeded?)
- (text@= message (/.construct ..an-exception [])))))
+ (text\= message (/.construct ..an-exception [])))))
(_.cover [/.catch]
(and (n.= expected
(|> (/.throw ..an-exception [])
@@ -96,7 +96,7 @@
(#try.Failure _) false)
(case (/.with ..an-exception [] (#try.Failure ""))
(#try.Success _) false
- (#try.Failure message) (text@= message (/.construct ..an-exception [])))
+ (#try.Failure message) (text\= message (/.construct ..an-exception [])))
(case (/.with ..an-exception []
(: (Try Nat)
(/.throw ..another-exception [])))