Skip to content

Commit a9ce795

Browse files
committed
Linter fixes
1 parent d6b85df commit a9ce795

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/test/common/process/pythonDaemonPool.functional.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ suite('Daemon - Python Daemon Pool', () => {
124124
await assert.eventually.equal(pythonDaemonPool.isModuleInstalled(moduleName), expectedToBeInstalled);
125125
}
126126

127-
test("'pip' module is installed", async () => testModuleInstalled('pip', true));
128-
test("'unittest' module is installed", async () => testModuleInstalled('unittest', true));
129-
test("'VSCode-Python-Rocks' module is not Installed", async () => testModuleInstalled('VSCode-Python-Rocks', false));
127+
test('\'pip\' module is installed', async () => testModuleInstalled('pip', true));
128+
test('\'unittest\' module is installed', async () => testModuleInstalled('unittest', true));
129+
test('\'VSCode-Python-Rocks\' module is not Installed', async () => testModuleInstalled('VSCode-Python-Rocks', false));
130130

131131
test('Execute a file and capture stdout (with unicode)', async () => {
132132
const source = dedent`

src/test/datascience/shiftEnterBanner.unit.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ suite('Interactive Shift Enter Banner', () => {
3838
}
3939

4040
setup(() => {
41+
clearTelemetryReporter();
4142
process.env.VSC_PYTHON_UNIT_TEST = undefined;
4243
process.env.VSC_PYTHON_CI_TEST = undefined;
4344
appShell = typemoq.Mock.ofType<IApplicationShell>();

0 commit comments

Comments
 (0)