From b3a2d6d99dc1c5604f83ee49ee703bd2c4074331 Mon Sep 17 00:00:00 2001 From: David Greenspan Date: Thu, 5 Dec 2013 23:31:37 -0800 Subject: [PATCH] Fix a Template name collision that broke tests --- packages/templating/templating_tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/templating/templating_tests.js b/packages/templating/templating_tests.js index bd45793d8b..1bc33f3660 100644 --- a/packages/templating/templating_tests.js +++ b/packages/templating/templating_tests.js @@ -550,8 +550,8 @@ Tinytest.add('templating - each falsy Issue #801', function (test) { }); Tinytest.add('templating - duplicate template error', function (test) { - Template.__define__("foo", function () {}); + Template.__define__("test_duplicate_template", function () {}); test.throws(function () { - Template.__define__("foo", function () {}); + Template.__define__("test_duplicate_template", function () {}); }); });