From fdb221c10631fb17c73d7b22bcc32e1d19823a7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 8 Jan 2018 13:41:20 -0500 Subject: [PATCH] fix helper test --- test/template-helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/template-helpers.js b/test/template-helpers.js index 8ada13f29e..a4257c8ce6 100644 --- a/test/template-helpers.js +++ b/test/template-helpers.js @@ -87,7 +87,7 @@ describe('helpers', function () { ], }; var html = helpers.generateChildrenCategories(category); - assert.equal(html, 'children '); + assert.equal(html, '
children
') done(); });