From 29149a39a364af777a8d90e35ec735f003eaa9b6 Mon Sep 17 00:00:00 2001 From: PanAeon Date: Wed, 6 Feb 2019 12:10:33 +0000 Subject: [PATCH] Fix E2E test in the lsp-log-streaming-sample --- lsp-log-streaming-sample/client/src/test/helper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lsp-log-streaming-sample/client/src/test/helper.ts b/lsp-log-streaming-sample/client/src/test/helper.ts index 22121c1c..9ae64af2 100644 --- a/lsp-log-streaming-sample/client/src/test/helper.ts +++ b/lsp-log-streaming-sample/client/src/test/helper.ts @@ -17,7 +17,7 @@ export let platformEol: string; */ export async function activate(docUri: vscode.Uri) { // The extensionId is `publisher.name` from package.json - const ext = vscode.extensions.getExtension('vscode.lsp-sample'); + const ext = vscode.extensions.getExtension('vscode-samples.lsp-log-streaming-sample'); await ext.activate(); try { doc = await vscode.workspace.openTextDocument(docUri);