We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1355463 commit 992c4daCopy full SHA for 992c4da
1 file changed
src/vs/base/test/node/path.test.ts
@@ -176,8 +176,8 @@ suite('Paths (Node Implementation)', () => {
176
});
177
178
test('dirname', () => {
179
- assert.strictEqual(path.dirname(path.normalize(__filename)).substr(-11),
180
- isWindows ? 'test\\common' : 'test/common');
+ assert.strictEqual(path.dirname(path.normalize(__filename)).substr(-9),
+ isWindows ? 'test\\node' : 'test/node');
181
182
assert.strictEqual(path.posix.dirname('/a/b/'), '/a');
183
assert.strictEqual(path.posix.dirname('/a/b'), '/a');
0 commit comments