Skip to content

Commit ae17dab

Browse files
authored
Fix hover E2E test on Windows. (#9648)
1 parent 9fd2438 commit ae17dab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/test/integrationTests/IntelliSenseFeatures/quickInfo.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ suite("[Quick info test]", function(): void {
4848
const result: vscode.Hover[] = <vscode.Hover[]>(await vscode.commands.executeCommand('vscode.executeHoverProvider', fileUri, new vscode.Position(35, 23)));
4949
const expected_full_comment: string = `\`\`\`cpp\nbool isEven(int value)\n\`\`\` \nVerifies if input is even number or not`;
5050
const expectedMap: Map<string, string> = new Map<string, string>();
51-
expectedMap.set("win32", `\`\`\`cpp\nbool isEven(int value)\n\`\`\``); // Running test locally returns full comment, but running test on Azure pipeline does not.
51+
expectedMap.set("win32", expected_full_comment);
5252
expectedMap.set("linux", expected_full_comment);
5353
expectedMap.set("darwin", expected_full_comment);
5454

0 commit comments

Comments
 (0)