Skip to content

Commit

Permalink
Fix hover E2E test on Windows. (#9648)
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-mcmanus authored Jul 27, 2022
1 parent 9fd2438 commit ae17dab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ suite("[Quick info test]", function(): void {
const result: vscode.Hover[] = <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<string, string> = new Map<string, string>();
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);

Expand Down

0 comments on commit ae17dab

Please sign in to comment.