Skip to content

Commit 91dbc3a

Browse files
committed
fix: test
1 parent de8b84e commit 91dbc3a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/common/pathUtils.unit.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ suite('Path Utilities', () => {
4242

4343
assert.ok(result instanceof Uri);
4444
assert.strictEqual(result?.scheme, 'file');
45-
// path in the URI should use forward slashes
46-
assert.strictEqual(result?.path.includes('\\'), false);
45+
assert.strictEqual(result?.path, 'C:/path/to/file.txt');
4746
});
4847

4948
test('parses existing URI correctly', () => {

0 commit comments

Comments
 (0)