Skip to content

Commit 47eff44

Browse files
authored
Fixup newly uncovered lint error (#1223)
The eslint-plugin version bump in #1222 uncovered some dead code that has no effect. Remove it so that we can rebase the @dependabot patch and update eslint-plugin.
1 parent c466b00 commit 47eff44

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/TestExplorer/TestRunner.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -670,12 +670,7 @@ export class TestRunner {
670670
outputStream.write(replaced);
671671
});
672672

673-
let cancellation: vscode.Disposable;
674673
task.execution.onDidClose(code => {
675-
if (cancellation) {
676-
cancellation.dispose();
677-
}
678-
679674
// undefined or 0 are viewed as success
680675
if (!code) {
681676
resolve();

0 commit comments

Comments
 (0)