From 20f25bad3828eac0153d27cd23cb0fc9df28cc42 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 3 Feb 2016 09:46:37 +0100 Subject: [PATCH] one more try, #2658 --- src/vs/workbench/test/node/api/extHostTypes.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/test/node/api/extHostTypes.test.ts b/src/vs/workbench/test/node/api/extHostTypes.test.ts index e2b0189aafe..4b4e8f774ec 100644 --- a/src/vs/workbench/test/node/api/extHostTypes.test.ts +++ b/src/vs/workbench/test/node/api/extHostTypes.test.ts @@ -27,7 +27,7 @@ suite('ExtHostTypes', function() { scheme: 'file', authority: '', path: '/path/test.file', - fsPath: '/path/test.file'.replace('/', isWindows ? '\\' : '/'), + fsPath: '/path/test.file'.replace(/\//g, isWindows ? '\\' : '/'), query: '', fragment: '', external: 'file:///path/test.file' -- GitLab