Skip to content

Commit aa80303

Browse files
committed
Fix scheme for webview test
1 parent f91775a commit aa80303

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/vscode-notebook-tests/src/notebook.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ suite('webview', () => {
746746
await vscode.commands.executeCommand('vscode.openWith', resource, 'notebookCoreTest');
747747
assert.equal(vscode.notebook.activeNotebookEditor !== undefined, true, 'notebook first');
748748
const uri = vscode.notebook.activeNotebookEditor!.asWebviewUri(vscode.Uri.file('./hello.png'));
749-
assert.equal(uri.scheme, 'vscode-webview-resource');
749+
assert.equal(uri.scheme, 'vscode-resource');
750750
await vscode.commands.executeCommand('workbench.action.closeAllEditors');
751751
});
752752

0 commit comments

Comments
 (0)