From a2ba01b0d760233c4a34adc7c05c2e4aed84db6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 10 Jan 2018 16:33:22 -0500 Subject: [PATCH] fix test --- test/topics.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/topics.js b/test/topics.js index f4d91ad763..903b6b8db4 100644 --- a/test/topics.js +++ b/test/topics.js @@ -1274,9 +1274,9 @@ describe('Topic\'s', function () { assert.equal(data.matchCount, 3); assert.equal(data.pageCount, 1); var tagData = [ - { value: 'nodebb', color: '', bgColor: '', score: 3 }, - { value: 'nodejs', color: '', bgColor: '', score: 1 }, - { value: 'nosql', color: '', bgColor: '', score: 1 }, + { value: 'nodebb', valueEscaped: 'nodebb', color: '', bgColor: '', score: 3 }, + { value: 'nodejs', valueEscaped: 'nodejs', color: '', bgColor: '', score: 1 }, + { value: 'nosql', valueEscaped: 'nosql', color: '', bgColor: '', score: 1 }, ]; assert.deepEqual(data.tags, tagData);