Skip to content

Commit 4f80e16

Browse files
author
whyboris
committed
include ignore argument
1 parent cdabb61 commit 4f80e16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cli-tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ describe('Cli', function() {
2525

2626
it('should _runGitDiff by default', function() {
2727
let spy = sinon.stub(Cli, '_runGitDiff');
28-
Cli.getInput('abc', ['lol', 'foo'], 'callback');
28+
Cli.getInput('abc', ['lol', 'foo'], 'ignore', 'callback');
2929
assert(spy.calledOnce);
30-
assert(spy.calledWith(['lol', 'foo'], 'callback'));
30+
assert(spy.calledWith(['lol', 'foo'], 'ignore', 'callback'));
3131
});
3232
});
3333

0 commit comments

Comments
 (0)