diff --git a/test/handlebars.js b/test/handlebars.js index 199bbf68..c5060545 100644 --- a/test/handlebars.js +++ b/test/handlebars.js @@ -116,7 +116,7 @@ test("block helper staying in the same context", function() { var string = "{{#form}}
{{name}}
{{/form}}" var template = Handlebars.compile(string); - result = template({form: function(fn) { console.log(fn); return "" }, name: "Yehuda"}); + result = template({form: function(fn) { return "" }, name: "Yehuda"}); equal(result, ""); });