From aa803039784c1ca4ec2ac3c87bd381fc0d2acec7 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Mon, 1 Jun 2020 16:13:37 -0700 Subject: [PATCH] Fix scheme for webview test --- extensions/vscode-notebook-tests/src/notebook.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/vscode-notebook-tests/src/notebook.test.ts b/extensions/vscode-notebook-tests/src/notebook.test.ts index 944b179a216..077815ad16d 100644 --- a/extensions/vscode-notebook-tests/src/notebook.test.ts +++ b/extensions/vscode-notebook-tests/src/notebook.test.ts @@ -746,7 +746,7 @@ suite('webview', () => { await vscode.commands.executeCommand('vscode.openWith', resource, 'notebookCoreTest'); assert.equal(vscode.notebook.activeNotebookEditor !== undefined, true, 'notebook first'); const uri = vscode.notebook.activeNotebookEditor!.asWebviewUri(vscode.Uri.file('./hello.png')); - assert.equal(uri.scheme, 'vscode-webview-resource'); + assert.equal(uri.scheme, 'vscode-resource'); await vscode.commands.executeCommand('workbench.action.closeAllEditors'); });