From a7575b2d2ef6d8645a0d66ad391dcfb659f989c8 Mon Sep 17 00:00:00 2001 From: David Greenspan Date: Sat, 1 Feb 2014 19:43:50 -0800 Subject: [PATCH] Remove stray console.log --- packages/spacebars-tests/template_tests.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/spacebars-tests/template_tests.js b/packages/spacebars-tests/template_tests.js index 793640e48f..b4bfa4903b 100644 --- a/packages/spacebars-tests/template_tests.js +++ b/packages/spacebars-tests/template_tests.js @@ -275,7 +275,6 @@ Tinytest.add("spacebars - templates - block helper function with one string arg" // `{{#foo "bar"}}content{{/foo}}` var tmpl = Template.spacebars_template_test_block_helper_function_one_string_arg; tmpl.foo = function () { - console.log(String(this)); if (String(this) === "bar") return Template.spacebars_template_test_content; else