diff options
Diffstat (limited to 'spec/parser.js')
-rw-r--r-- | spec/parser.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/parser.js b/spec/parser.js index ebde171..ff12cc4 100644 --- a/spec/parser.js +++ b/spec/parser.js @@ -184,7 +184,7 @@ describe('parser', function() { describe('externally compiled AST', function() { it('can pass through an already-compiled AST', function() { - equals(ast_for(new Handlebars.AST.ProgramNode([ new Handlebars.AST.ContentNode("Hello")])), "CONTENT[ \'Hello\' ]\n"); + equals(ast_for(new Handlebars.AST.ProgramNode(false, [ new Handlebars.AST.ContentNode("Hello")])), "CONTENT[ \'Hello\' ]\n"); }); }); }); |