Fix Go To Definition smoketest

Fixes #85276
This commit is contained in:
Alex Ross 2019-11-21 09:58:10 +01:00
parent b63e626066
commit 4235c7f076

View file

@ -40,7 +40,7 @@ export class Editor {
async gotoDefinition(filename: string, term: string, line: number): Promise<void> {
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<References> {