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 }); }