Skip to content

Commit

Permalink
Remove fix to verify test fails on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
debonte committed Apr 5, 2023
1 parent ff93cb0 commit 8bafbc4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
}

0 comments on commit 8bafbc4

Please sign in to comment.