Skip to content

Commit f4c64e5

Browse files
committed
remoteLaunchers.unit.test.ts: fix formatting issues
1 parent 2601ca5 commit f4c64e5

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

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

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,12 @@ suite('External debugpy Debugger Launcher', () => {
1919
{
2020
testName: 'When path to debugpy does not contains spaces',
2121
path: path.join('path', 'to', 'debugpy'),
22-
expectedPath: osExpectedPath(
23-
'path\\to\\debugpy',
24-
'path/to/debugpy'
25-
),
22+
expectedPath: osExpectedPath('path\\to\\debugpy', 'path/to/debugpy'),
2623
},
2724
{
2825
testName: 'When path to debugpy contains spaces',
2926
path: path.join('path', 'to', 'debugpy', 'with spaces'),
30-
expectedPath: osExpectedPath(
31-
'"path\\to\\debugpy\\with spaces"',
32-
'"path/to/debugpy/with spaces"'
33-
),
27+
expectedPath: osExpectedPath('"path\\to\\debugpy\\with spaces"', '"path/to/debugpy/with spaces"'),
3428
},
3529
].forEach((testParams) => {
3630
suite(testParams.testName, async () => {

0 commit comments

Comments
 (0)