Skip to content

Commit 22f5640

Browse files
committed
Linter fixes
1 parent c752245 commit 22f5640

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-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`

0 commit comments

Comments
 (0)