From ef06621a2b24f3a786ed706746b6720ede8eed22 Mon Sep 17 00:00:00 2001 From: David Majda Date: Tue, 17 Apr 2012 12:00:58 +0200 Subject: [PATCH] Remove extra comma in compiler tests --- test/compiler-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/compiler-test.js b/test/compiler-test.js index fbecc8f..90e013a 100644 --- a/test/compiler-test.js +++ b/test/compiler-test.js @@ -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 */