Skip to content

Commit

Permalink
Corrected textual message
Browse files Browse the repository at this point in the history
  • Loading branch information
tregusti committed Jul 11, 2012
1 parent 0cb6482 commit 30eda3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions chai-spies.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@
new Assertion(this._obj).to.be.spy;
this.assert(
this._obj.__spy.calls.length === 2
, 'expected #{this} to have been called once but got #{act}'
, 'expected #{this} to not have been called once'
, 'expected #{this} to have been called twice but got #{act}'
, 'expected #{this} to not have been called twice'
, 2
, this._obj.__spy.calls.length
);
Expand Down
4 changes: 2 additions & 2 deletions lib/spy.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ module.exports = function (chai, _) {
new Assertion(this._obj).to.be.spy;
this.assert(
this._obj.__spy.calls.length === 2
, 'expected #{this} to have been called once but got #{act}'
, 'expected #{this} to not have been called once'
, 'expected #{this} to have been called twice but got #{act}'
, 'expected #{this} to not have been called twice'
, 2
, this._obj.__spy.calls.length
);
Expand Down

0 comments on commit 30eda3b

Please sign in to comment.