diff options
author | Zahary Karadjov <zahary@gmail.com> | 2012-04-15 02:54:12 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2012-04-15 02:54:12 +0300 |
commit | 1ba31f8df73573e61154b37b51e11d357a8ff7fa (patch) | |
tree | 0cd746e629c4aa350ae4cfbd633bb3f137ff105b /tests/run | |
parent | 57fe3e8c41c6c046b2ad91ea382ce7c31061f04d (diff) | |
download | Nim-1ba31f8df73573e61154b37b51e11d357a8ff7fa.tar.gz |
minor changes to make the test suite green again
Diffstat (limited to 'tests/run')
-rwxr-xr-x | tests/run/tpegs.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/run/tpegs.nim b/tests/run/tpegs.nim index 8fe302073..0834d38a7 100755 --- a/tests/run/tpegs.nim +++ b/tests/run/tpegs.nim @@ -1734,7 +1734,6 @@ when isMainModule: else: doAssert false - var matches: array[0..5, string] if match("abcdefg", peg"c {d} ef {g}", matches, 2): doAssert matches[0] == "d" doAssert matches[1] == "g" |