Skip to content

Commit

Permalink
extensionTestsLocationURI.fsPath normalizes path (for #69569)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Mar 2, 2019
1 parent 1e17319 commit e96ab81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/api/node/extHostExtensionService.ts
Expand Up @@ -5,6 +5,7 @@

import * as nls from 'vs/nls';
import * as path from 'vs/base/common/path';
import { originalFSPath } from 'vs/base/common/resources';
import { Barrier } from 'vs/base/common/async';
import { IDisposable, dispose, toDisposable } from 'vs/base/common/lifecycle';
import { TernarySearchTree } from 'vs/base/common/map';
Expand Down Expand Up @@ -614,7 +615,7 @@ export class ExtHostExtensionService implements ExtHostExtensionServiceShape {
return Promise.resolve(undefined);
}

const extensionTestsPath = extensionTestsLocationURI.fsPath;
const extensionTestsPath = originalFSPath(extensionTestsLocationURI);

// Require the test runner via node require from the provided path
let testRunner: ITestRunner | undefined;
Expand Down

0 comments on commit e96ab81

Please sign in to comment.