Skip to content

Commit 6df15dc

Browse files
committed
Revert "remoteLaunchers: ensure test is normalizing paths"
This reverts commit 32822e0.
1 parent 745998a commit 6df15dc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/unittest/adapter/remoteLaunchers.unit.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import * as path from 'path';
88
import { EXTENSION_ROOT_DIR } from '../../../extension/common/constants';
99
import '../../../extension/common/promiseUtils';
1010
import * as launchers from '../../../extension/debugger/adapter/remoteLaunchers';
11-
import { fileToCommandArgumentForPythonExt } from '../../../extension/common/stringUtils';
1211

1312
suite('External debugpy Debugger Launcher', () => {
1413
[
@@ -19,7 +18,7 @@ suite('External debugpy Debugger Launcher', () => {
1918
},
2019
{
2120
testName: 'When path to debugpy contains spaces',
22-
path: fileToCommandArgumentForPythonExt(path.join('path', 'to', 'debugpy', 'with spaces')),
21+
path: path.join('path', 'to', 'debugpy', 'with spaces'),
2322
expectedPath: '"path/to/debugpy/with spaces"',
2423
},
2524
].forEach((testParams) => {

0 commit comments

Comments
 (0)