Skip to content

Commit

Permalink
Adapt to sinon v2 API.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwippermann committed Feb 10, 2018
1 parent e0cf830 commit 97d005c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/specs/base-configuration-optimizer.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ describe('ValuesWrapper', function() {
expect(action.callCount).equal(1);
expect(action.getCall(0).args [0].md [0]).equal('TestValue1');

checker.reset();
action.reset();
checker.resetHistory();
action.resetHistory();

values._check(actionWrapper, checker, {
includeUndefined: false,
Expand Down Expand Up @@ -304,8 +304,8 @@ describe('ValuesWrapper', function() {
expect(action.callCount).equal(1);
expect(action.getCall(0).args [0].md [0]).equal('TestValue1');

checker.reset();
action.reset();
checker.resetHistory();
action.resetHistory();

values._check(actionWrapper, checker, {
includeFailed: false,
Expand Down

0 comments on commit 97d005c

Please sign in to comment.