diff --git a/test/utility.js b/test/utility.js
index b7f742e0e..a38eb1a98 100644
--- a/test/utility.js
+++ b/test/utility.js
@@ -58,8 +58,8 @@ $(document).ready(function() {
var fancyTemplate = _.template("
<% for (key in people) { %>- <%= people[key] %>
<% } %>
");
result = fancyTemplate({people : {moe : "Moe", larry : "Larry", curly : "Curly"}});
equals(result, "", 'can run arbitrary javascript in templates');
-
- var namespaceCollisionTemplate = _.template("<%= pageCount %> <%= thumbnails[pageCount] %> <% _.each(thumbnails, function(p) { %>
\" />
<% }); %>");
+
+ var namespaceCollisionTemplate = _.template("<%= pageCount %> <%= thumbnails[pageCount] %> <% _.each(thumbnails, function(p) { %>\">
<% }); %>");
result = namespaceCollisionTemplate({
pageCount: 3,
thumbnails: {
@@ -68,7 +68,7 @@ $(document).ready(function() {
3: "p3-thumbnail.gif"
}
});
- equals(result, "3 p3-thumbnail.gif ");
+ equals(result, "3 p3-thumbnail.gif ");
var noInterpolateTemplate = _.template("Just some text. Hey, I know this is silly but it aids consistency.
");
result = noInterpolateTemplate();