mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 05:37:45 +00:00
fix win tests on tfs
This commit is contained in:
@@ -215,9 +215,11 @@ suite('Extfs', () => {
|
||||
const upper = newDir.toUpperCase();
|
||||
const real = extfs.realpathSync(upper);
|
||||
|
||||
assert.notEqual(real, upper);
|
||||
assert.equal(real.toUpperCase(), upper);
|
||||
assert.equal(real, newDir);
|
||||
if (real) { // can be null in case of permission errors
|
||||
assert.notEqual(real, upper);
|
||||
assert.equal(real.toUpperCase(), upper);
|
||||
assert.equal(real, newDir);
|
||||
}
|
||||
}
|
||||
|
||||
// linux, unix, etc. -> assume case sensitive file system
|
||||
|
||||
Reference in New Issue
Block a user