From ae17dab8043d3ad660906d6f1913b7a62b848b8e Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 26 Jul 2022 19:38:33 -0700 Subject: [PATCH] Fix hover E2E test on Windows. (#9648) --- .../integrationTests/IntelliSenseFeatures/quickInfo.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/test/integrationTests/IntelliSenseFeatures/quickInfo.test.ts b/Extension/test/integrationTests/IntelliSenseFeatures/quickInfo.test.ts index cdc6504c16..85195080bc 100644 --- a/Extension/test/integrationTests/IntelliSenseFeatures/quickInfo.test.ts +++ b/Extension/test/integrationTests/IntelliSenseFeatures/quickInfo.test.ts @@ -48,7 +48,7 @@ suite("[Quick info test]", function(): void { const result: vscode.Hover[] = (await vscode.commands.executeCommand('vscode.executeHoverProvider', fileUri, new vscode.Position(35, 23))); const expected_full_comment: string = `\`\`\`cpp\nbool isEven(int value)\n\`\`\` \nVerifies if input is even number or not`; const expectedMap: Map = new Map(); - expectedMap.set("win32", `\`\`\`cpp\nbool isEven(int value)\n\`\`\``); // Running test locally returns full comment, but running test on Azure pipeline does not. + expectedMap.set("win32", expected_full_comment); expectedMap.set("linux", expected_full_comment); expectedMap.set("darwin", expected_full_comment);