From ccbb241ac9039501caf3f1982effd71d98f5f11f Mon Sep 17 00:00:00 2001 From: Alan Johnson Date: Fri, 6 Aug 2010 00:36:02 -0400 Subject: [PATCH] Took out a console.log that was hanging around. --- test/handlebars.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "
" + fn(this) + "
" }, name: "Yehuda"}); + result = template({form: function(fn) { return "
" + fn(this) + "
" }, name: "Yehuda"}); equal(result, "

Yehuda

"); });