Skip to content

Commit

Permalink
satisfy linter
Browse files Browse the repository at this point in the history
  • Loading branch information
kommander committed May 24, 2017
1 parent cc11128 commit 602d6f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/core.spec.js
Expand Up @@ -472,7 +472,9 @@ describe('Core', () => {
expect(err).to.have.property('_infoStr');
expect(err._infoStr).to.be.a('string');
expect(err._infoStr).to.be('additional stuff');
expect(err.message).to.be('Error: I could not fly into the sky. (No reason) (additional stuff)');
expect(err.message).to.be(
'Error: I could not fly into the sky. (No reason) (additional stuff)'
);
});

it('allows to concat info with rest arguments');
Expand Down

0 comments on commit 602d6f1

Please sign in to comment.