diff --git a/test/compiler-test.js b/test/compiler-test.js index a40579f..72976d0 100644 --- a/test/compiler-test.js +++ b/test/compiler-test.js @@ -495,7 +495,7 @@ test("non-context-free language", function() { var parser = PEG.buildParser([ 'S = &(A "c") a:"a"+ B:B !("a" / "b" / "c") { return a.join("") + B; }', 'A = a:"a" A:A? b:"b" { return a + A + b; }', - 'B = b:"b" B:B? c:"c" { return b + B + c; }', + 'B = b:"b" B:B? c:"c" { return b + B + c; }' ].join("\n")); parses(parser, "abc", "abc");