Skip to content

Commit 227f879

Browse files
committed
Fix test
1 parent 87fff2e commit 227f879

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/buildExec.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ import buildExec from './buildExec';
22

33
test('no arguments', () => {
44
const {execArgs, filepath, failCi} = buildExec();
5-
expect(execArgs.slice(0, -1)).toEqual([
5+
expect(execArgs.slice(0, -2)).toEqual([
66
'codecov.sh',
77
'-n',
88
'',
99
'-F',
1010
'',
1111
'-Q',
1212
'github-action',
13-
'-C',
1413
]);
1514
expect(filepath).toEqual('codecov.sh');
1615
expect(failCi).toBeFalsy();

0 commit comments

Comments
 (0)