diff --git a/tests/unit/htmleditor/basicfunctionalities/rendering/htmleditor-test.js b/tests/unit/htmleditor/basicfunctionalities/rendering/htmleditor-test.js index fe8feb101..6a3223160 100644 --- a/tests/unit/htmleditor/basicfunctionalities/rendering/htmleditor-test.js +++ b/tests/unit/htmleditor/basicfunctionalities/rendering/htmleditor-test.js @@ -710,13 +710,13 @@ QUnit.module("igHTMLEditor unit tests", { $.browser = { "IE": "IE" }; htmlEditor.data("igHtmlEditor")._selectionWrapperSaved._commands.insertunorderedlist.browsers = ["IE", "Chrome"]; htmlEditor.data("igHtmlEditor")._selectionWrapperSaved.execCommand("insertunorderedlist", null); - self.assert.equal(htmlEditor.igHtmlEditor("getContent", "html"), '', "Content changed to have unordered list"); + self.assert.equal(htmlEditor.igHtmlEditor("getContent", "html"), '', "Content changed to have unordered list"); $.browser = undefined; htmlEditor.data("igHtmlEditor")._selectionWrapperSaved.execCommand("insertunorderedlist", null); htmlEditor.data("igHtmlEditor")._selectionWrapperSaved.execCommand("bold", null); - self.assert.equal(htmlEditor.igHtmlEditor("getContent", "html"), 'Some content
', "Content remains the same"); + self.assert.equal(htmlEditor.igHtmlEditor("getContent", "html"), 'Some content', "Content remains the same"); return $.ig.TestUtil.wait(300); }).then(function () { htmlEditor.igHtmlEditor("setContent", "
Some content1
Some content2
Some content3
", "html");