Skip to content

Commit 9d0e7f9

Browse files
committed
Removed unnecessary code
1 parent 8093593 commit 9d0e7f9

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/test/extension.refactor.extract.var.test.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,7 @@ suiteSetup(done => {
9999
execPythonFile('python', ['--version'], __dirname, true).then(resolve);
100100
}).then(version => {
101101
isPython3 = version.indexOf('3.') >= 0;
102-
console.log("PYTHON VERSION = " + version);
103-
104-
child_process.execFile("python", ["--version"], null, (error, stdout, stderr) => {
105-
console.log("PYTHON VERSION stdout " + stdout);
106-
console.log("PYTHON VERSION stderr " + stderr);
107-
done();
108-
});
102+
done();
109103
});
110104
});
111105
});

0 commit comments

Comments
 (0)