diff --git a/test/unit/lib/mobiledoc_spec.js b/test/unit/lib/mobiledoc_spec.js
index 1c90d5ae1e..2dd84a30d9 100644
--- a/test/unit/lib/mobiledoc_spec.js
+++ b/test/unit/lib/mobiledoc_spec.js
@@ -78,7 +78,7 @@ describe('lib/mobiledoc', function () {
};
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
- .should.eql('
One
Two
Markdown card
\nSome markdown
\nThree
BirdiesFour
HTML card
\nEmbed card
');
+ .should.eql('One
Two
Markdown card
\nSome markdown
\nThree
BirdiesFour
HTML card
\nEmbed card
');
});
it('renders according to ghostVersion', function () {
@@ -136,7 +136,7 @@ describe('lib/mobiledoc', function () {
};
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
- .should.eql('
Birdies');
+ .should.eql('
Birdies');
});
it('does not render srcsets for non-resizable images', function () {
@@ -156,7 +156,7 @@ describe('lib/mobiledoc', function () {
};
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
- .should.eql('
');
+ .should.eql('
');
});
it('does not render srcsets when sharp is not available', function () {
@@ -179,7 +179,7 @@ describe('lib/mobiledoc', function () {
};
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
- .should.eql('
');
+ .should.eql('
');
});
it('does not render srcsets with incompatible storage engine', function () {
@@ -202,7 +202,7 @@ describe('lib/mobiledoc', function () {
};
mobiledocLib.mobiledocHtmlRenderer.render(mobiledoc)
- .should.eql('
');
+ .should.eql('
');
});
});