aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test
diff options
context:
space:
mode:
authorEduardo Julian2017-05-03 23:51:16 -0400
committerEduardo Julian2017-05-03 23:51:16 -0400
commitc700bb87641d37b2db9f31cd8db157fce170f866 (patch)
tree5be5950a095451f0c08707deb3628ea6edfd5df5 /stdlib/test
parent9849d179f644927be036ee66f32e219623a59021 (diff)
- Removed the "S" suffix from AST tags.
Diffstat (limited to 'stdlib/test')
-rw-r--r--stdlib/test/test/lux/macro/syntax.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/test/test/lux/macro/syntax.lux b/stdlib/test/test/lux/macro/syntax.lux
index 19607f16e..f523f227c 100644
--- a/stdlib/test/test/lux/macro/syntax.lux
+++ b/stdlib/test/test/lux/macro/syntax.lux
@@ -139,7 +139,7 @@
(test: "Combinators [Part 1]"
($_ seq
(assert "Can parse any AST."
- (match [_ (#;BoolS true)]
+ (match [_ (#;Bool true)]
(s;run (list (ast;bool true) (ast;int 123))
s;any)))