From 467024d1e2c3e03724a18be8311069db59ff031c Mon Sep 17 00:00:00 2001 From: Alan Johnson Date: Thu, 12 Aug 2010 23:15:01 -0400 Subject: [PATCH] FTiny test tweak - quoted href of a link in one of the test templates, just because it was bugging me. --- test/handlebars.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/handlebars.js b/test/handlebars.js index 3c23f5ce..a394f3b9 100644 --- a/test/handlebars.js +++ b/test/handlebars.js @@ -206,9 +206,9 @@ test("partials with context", function() { test("partial in a partial", function() { var string = "Dudes: {{#dudes}}{{> dude}}{{/dudes}}"; var dude = "{{name}} {{> url}} "; - var url = "{{url}}"; + var url = "{{url}}"; var hash = {dudes: [{name: "Yehuda", url: "http://yehuda"}, {name: "Alan", url: "http://alan"}]}; - shouldCompileTo(string, [hash, {partials: {dude: dude, url: url}}], "Dudes: Yehuda http://yehuda Alan http://alan ", "Partials are rendered inside of other partials"); + shouldCompileTo(string, [hash, {partials: {dude: dude, url: url}}], "Dudes: Yehuda http://yehuda Alan http://alan ", "Partials are rendered inside of other partials"); }); module("safestring");