From 9dd556a9e06a6f9b5d7e734fea9ec00d34071a63 Mon Sep 17 00:00:00 2001 From: justanotheranonymoususer Date: Mon, 4 Sep 2023 15:44:03 +0300 Subject: [PATCH] Remove superfluous arg in git smoke.test.ts (#173194) --- extensions/git/src/test/smoke.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/git/src/test/smoke.test.ts b/extensions/git/src/test/smoke.test.ts index 789086e90a4..b0070eb127f 100644 --- a/extensions/git/src/test/smoke.test.ts +++ b/extensions/git/src/test/smoke.test.ts @@ -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);