Remove superfluous arg in git smoke.test.ts (#173194)

This commit is contained in:
justanotheranonymoususer 2023-09-04 15:44:03 +03:00 committed by GitHub
parent 1ac6f50f44
commit 9dd556a9e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,7 +122,7 @@ suite('git smoke test', function () {
repository.state.workingTreeChanges.some(r => r.uri.path === newfile.path && r.status === Status.UNTRACKED);
assert.strictEqual(repository.state.indexChanges.length, 0);
await commands.executeCommand('git.stageAll', appjs);
await commands.executeCommand('git.stageAll');
await repository.commit('third commit');
assert.strictEqual(repository.state.workingTreeChanges.length, 0);
assert.strictEqual(repository.state.indexChanges.length, 0);