Skip to content

Commit

Permalink
Remove legacy empty sinon mock calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffano committed Jul 29, 2023
1 parent 0415d5c commit a057225
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion test/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ describe('cli - exec', function() {
assert.isFunction(actions.commands.clean.action);
done();
};
sinon.mock({});
sinon.stub(bag, 'command').value(mockCommand);
cli.exec();
});
Expand Down
1 change: 0 additions & 1 deletion test/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('functions - date', function() {

beforeEach(function () {
this.clock = sinon.useFakeTimers(new Date(2000, 9, 10).getTime());
sinon.mock({});
});

afterEach(function () {
Expand Down

0 comments on commit a057225

Please sign in to comment.