Skip to content

Commit 2f43135

Browse files
committed
fix test
1 parent 42c139b commit 2f43135

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/features/terminal/terminalManager.unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,8 @@ suite('TerminalManager - terminal naming', () => {
350350
'Dedicated terminal with string key should use the string in the title',
351351
);
352352
assert.strictEqual(
353-
path.resolve(optionsList[0]?.cwd as string),
354-
path.resolve(projectPath),
353+
Uri.file(optionsList[0]?.cwd as string).fsPath,
354+
Uri.file(projectPath).fsPath,
355355
'Dedicated terminal with string key should use project directory as cwd',
356356
);
357357
} finally {

0 commit comments

Comments
 (0)