Skip to content

Commit df9090d

Browse files
committed
Fix test
1 parent f81a158 commit df9090d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/result-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('Result', function() {
3636
});
3737

3838
it('rejects when body insert comment missing', function (done) {
39-
return result.html()
39+
result.html()
4040
.catch(function (e) {
4141
expect(e).to.be.an('error');
4242
expect(e.message).to.equal("Fastboot was not able to find <!--EMBER_CLI_FASTBOOT_BODY--> in base HTML. It could not replace the contents.");
@@ -52,7 +52,7 @@ describe('Result', function() {
5252
});
5353

5454
it('rejects when head insert comment missing', function (done) {
55-
return result.html()
55+
result.html()
5656
.catch(function (e) {
5757
expect(e).to.be.an('error');
5858
expect(e.message).to.equal("Fastboot was not able to find <!--EMBER_CLI_FASTBOOT_HEAD--> in base HTML. It could not replace the contents.");

0 commit comments

Comments
 (0)