aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/tool/compiler/reference.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/tool/compiler/reference.lux')
-rw-r--r--stdlib/source/test/lux/tool/compiler/reference.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/test/lux/tool/compiler/reference.lux b/stdlib/source/test/lux/tool/compiler/reference.lux
index 9204b53a8..6f247179c 100644
--- a/stdlib/source/test/lux/tool/compiler/reference.lux
+++ b/stdlib/source/test/lux/tool/compiler/reference.lux
@@ -52,7 +52,7 @@
(,, (with_template [<tag>]
[(_.coverage [<tag>]
(case (<tag> expected_register)
- (pattern (<tag> actual_register))
+ (<tag> actual_register)
(n.= expected_register actual_register)
_
@@ -65,20 +65,20 @@
(_.coverage [/.variable /.self]
(and (at /.equivalence = (/.self) (/.variable (variable.self)))
(case (/.self)
- (pattern (/.self))
+ (/.self)
true
_
false)
(case (/.variable (variable.self))
- (pattern (/.self))
+ (/.self)
true
_
false)))
(_.coverage [/.constant]
(case (/.constant expected_constant)
- (pattern (/.constant actual_constant))
+ (/.constant actual_constant)
(symbol#= expected_constant actual_constant)
_