From 923b049bd173cad5a49833ae15d54c59e158c3e3 Mon Sep 17 00:00:00 2001 From: rchiodo Date: Thu, 3 Sep 2020 17:05:35 -0700 Subject: [PATCH 1/2] Fix unit tests --- src/test/common/moduleInstaller.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/common/moduleInstaller.test.ts b/src/test/common/moduleInstaller.test.ts index abae5cd316a5..947f88e5fff6 100644 --- a/src/test/common/moduleInstaller.test.ts +++ b/src/test/common/moduleInstaller.test.ts @@ -140,7 +140,7 @@ import { closeActiveWindows, initializeTest } from './../initialize'; chai_use(chaiAsPromised); -const isolated = path.join(EXTENSION_ROOT_DIR_FOR_TESTS, 'pythonFiles', 'pyvsc-run-isolated.py'); +const isolated = path.join(EXTENSION_ROOT_DIR_FOR_TESTS, 'pythonFiles', 'pyvsc-run-isolated.py').replace(/\\\\/g, '/'); const info: PythonEnvironment = { architecture: Architecture.Unknown, From fa1dd0613aa8c1da04a05e8d818fdefa60f22f53 Mon Sep 17 00:00:00 2001 From: rchiodo Date: Thu, 3 Sep 2020 17:09:46 -0700 Subject: [PATCH 2/2] Revert "Fix unit tests" This reverts commit 923b049bd173cad5a49833ae15d54c59e158c3e3. --- src/test/common/moduleInstaller.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/common/moduleInstaller.test.ts b/src/test/common/moduleInstaller.test.ts index 947f88e5fff6..abae5cd316a5 100644 --- a/src/test/common/moduleInstaller.test.ts +++ b/src/test/common/moduleInstaller.test.ts @@ -140,7 +140,7 @@ import { closeActiveWindows, initializeTest } from './../initialize'; chai_use(chaiAsPromised); -const isolated = path.join(EXTENSION_ROOT_DIR_FOR_TESTS, 'pythonFiles', 'pyvsc-run-isolated.py').replace(/\\\\/g, '/'); +const isolated = path.join(EXTENSION_ROOT_DIR_FOR_TESTS, 'pythonFiles', 'pyvsc-run-isolated.py'); const info: PythonEnvironment = { architecture: Architecture.Unknown,