Remove extra comma in compiler tests

This commit is contained in:
David Majda 2012-04-17 12:00:58 +02:00
parent 7faf40dc44
commit ef06621a2b

View file

@ -788,7 +788,7 @@ testWithVaryingTrackLineAndColumn("cache", function(options) {
var grammar = [
'{ var n = 0; }',
'start = (a "b") / (a "c") { return n; }',
'a = "a" { n++; }',
'a = "a" { n++; }'
].join("\n");
/* Without cache */