diff options
author | Eduardo Julian | 2017-03-24 17:09:57 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-03-24 17:09:57 -0400 |
commit | f6cb4f22329a4c60821fbd03749667adc703b19b (patch) | |
tree | f6d6aaf39167f0fa4ecdd14d191ea70ece28a2bc /stdlib/test | |
parent | a33a0b4767ce510438a62a0108585c36b44df3aa (diff) |
- Renamed "end" to "end!".
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/test/lux/macro/syntax.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/test/test/lux/macro/syntax.lux b/stdlib/test/test/lux/macro/syntax.lux index 340f8d2aa..fe5b48993 100644 --- a/stdlib/test/test/lux/macro/syntax.lux +++ b/stdlib/test/test/lux/macro/syntax.lux @@ -202,9 +202,9 @@ (assert "Can ensure the end has been reached." (and (match [] (s;run (list) - s;end)) + s;end!)) (fails? (s;run (list (ast;bool true)) - s;end)))) + s;end!)))) (assert "Can apply a parser N times." (and (match (list 123 456 789) |