Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/test_explorer.ts')
-rw-r--r--editors/code/src/test_explorer.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/test_explorer.ts b/editors/code/src/test_explorer.ts
index de41d2a57e..e45f828294 100644
--- a/editors/code/src/test_explorer.ts
+++ b/editors/code/src/test_explorer.ts
@@ -133,7 +133,7 @@ export const prepareTestExplorer = (
}
if (scope) {
const recursivelyRemove = (tests: vscode.TestItemCollection) => {
- for (const [_, test] of tests) {
+ for (const [, test] of tests) {
if (!testSet.has(test.id)) {
deleteTest(test, tests);
} else {