From 8bafbc411de6c46e8498dd9cd8326c682dbdb604 Mon Sep 17 00:00:00 2001 From: Erik De Bonte Date: Wed, 5 Apr 2023 12:36:14 -0700 Subject: [PATCH] Remove fix to verify test fails on Linux --- src/standalone/intellisense/notebookPythonPathService.node.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/standalone/intellisense/notebookPythonPathService.node.ts b/src/standalone/intellisense/notebookPythonPathService.node.ts index 0e290b97f01..d63a9040e24 100644 --- a/src/standalone/intellisense/notebookPythonPathService.node.ts +++ b/src/standalone/intellisense/notebookPythonPathService.node.ts @@ -149,7 +149,8 @@ export function getNotebookUriFromInputBoxUri(textDocumentUri: Uri): Uri | undef return undefined; } - const inputBoxPrefix = path.sep + 'InteractiveInput-'; + // Temporarily remove fix to verify that tests fail on Linux + const inputBoxPrefix = '\\InteractiveInput-'; const notebookPath = `${textDocumentUri.fsPath.replace(inputBoxPrefix, 'Interactive-')}.interactive`; return textDocumentUri.with({ scheme: 'vscode-interactive', path: notebookPath }); }