diff --git a/core/test/regression/importer/importer_spec.js b/core/test/regression/importer/importer_spec.js index 4dac9579d7..53d0da69ea 100644 --- a/core/test/regression/importer/importer_spec.js +++ b/core/test/regression/importer/importer_spec.js @@ -1359,10 +1359,10 @@ describe('1.0', function () { const posts = result[0].data.map((model) => model.toJSON(options)); posts.length.should.eql(2); - posts[0].html.should.eql('

'); + should(posts[0].html).eql(null); posts[0].mobiledoc.should.eql('{"version":"0.3.1","markups":[],"atoms":[],"cards":[],"sections":[[1,"p",[[0,[],0,""]]]]}'); - posts[1].html.should.eql('

'); + should(posts[1].html).eql(null); posts[1].mobiledoc.should.eql('{"version":"0.3.1","markups":[],"atoms":[],"cards":[],"sections":[[1,"p",[[0,[],0,""]]]]}'); }); }); @@ -1388,7 +1388,7 @@ describe('1.0', function () { const posts = result[0].data.map((model) => model.toJSON(options)); posts.length.should.eql(1); - posts[0].html.should.eql('

'); + should(posts[0].html).eql(null); posts[0].mobiledoc.should.eql('{"version":"0.3.1","markups":[],"atoms":[],"cards":[],"sections":[[1,"p",[[0,[],0,""]]]]}'); }); }); @@ -1414,7 +1414,7 @@ describe('1.0', function () { const posts = result[0].data.map((model) => model.toJSON(options)); posts.length.should.eql(1); - posts[0].html.should.eql('

'); + should(posts[0].html).eql(null); posts[0].mobiledoc.should.eql('{"version":"0.3.1","markups":[],"atoms":[],"cards":[],"sections":[[1,"p",[[0,[],0,""]]]]}'); }); });