Skip to content

Commit

Permalink
Fix broken test after rebasing 4.x.x branch
Browse files Browse the repository at this point in the history
  • Loading branch information
meeber committed Sep 8, 2016
1 parent 62309d3 commit 4a009de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ describe('utilities', function () {

var dneFail = expect('something');
var dneError;
try { dneFail.to.doesnotexistfail(); }
try { dneFail.doesnotexistfail(); }
catch (e) { dneError = e; }
expect(dneFail.__flags).to.have.property('doesnt');
expect(dneError.message).to.eql('doesnotexistfail is not a function');
Expand Down

0 comments on commit 4a009de

Please sign in to comment.