Skip to content

Commit d3f94b4

Browse files
committed
error fix
1 parent fc9dc6c commit d3f94b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ suite('Debugging - Adapter Factory', () => {
294294
test('Add quotes to interpreter path with spaces', async () => {
295295
const customAdapterPath = path.join('custom', 'debug', 'adapter', 'customAdapterPath');
296296
const session = createSession({ debugAdapterPath: customAdapterPath });
297-
const interpreterPathSpaces = path.join('/path', 'to', 'python interpreter with spaces');
297+
const interpreterPathSpaces = path.join('path', 'to', 'python interpreter with spaces');
298298
const interpreterPathSpacesQuoted = `"${interpreterPathSpaces}"`;
299299
const debugExecutable = new DebugAdapterExecutable(interpreterPathSpacesQuoted, [customAdapterPath]);
300300

0 commit comments

Comments
 (0)