We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de8b84e commit 91dbc3aCopy full SHA for 91dbc3a
1 file changed
src/test/common/pathUtils.unit.test.ts
@@ -42,8 +42,7 @@ suite('Path Utilities', () => {
42
43
assert.ok(result instanceof Uri);
44
assert.strictEqual(result?.scheme, 'file');
45
- // path in the URI should use forward slashes
46
- assert.strictEqual(result?.path.includes('\\'), false);
+ assert.strictEqual(result?.path, 'C:/path/to/file.txt');
47
});
48
49
test('parses existing URI correctly', () => {
0 commit comments