From 4235c7f076535b4e6fc3ffa23e87c0d8905b4f72 Mon Sep 17 00:00:00 2001 From: Alex Ross Date: Thu, 21 Nov 2019 09:58:10 +0100 Subject: [PATCH] Fix Go To Definition smoketest Fixes #85276 --- test/automation/src/editor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/automation/src/editor.ts b/test/automation/src/editor.ts index 907f614d245..97a8b5214a2 100644 --- a/test/automation/src/editor.ts +++ b/test/automation/src/editor.ts @@ -40,7 +40,7 @@ export class Editor { async gotoDefinition(filename: string, term: string, line: number): Promise { await this.clickOnTerm(filename, term, line); - await this.commands.runCommand('Go to Implementation'); + await this.commands.runCommand('Go to Implementations'); } async peekDefinition(filename: string, term: string, line: number): Promise { -- GitLab