Skip to content

Commit

Permalink
test/gopls: fix the lint error
Browse files Browse the repository at this point in the history
The lint rule was changed since PR microsoft#3157
so the newly added code broke the lint test.

Change-Id: Ic58dfa62e19cb61600b45fe10b43811eb00bc28d
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/230297
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
  • Loading branch information
hyangah committed Apr 27, 2020
1 parent f3dd04b commit 1475ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gopls/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async function sleep(ms: number) {
return new Promise((resolve) => setTimeout(resolve, ms));
}

suite('Go Extension Tests With Gopls', function() {
suite('Go Extension Tests With Gopls', function () {
this.timeout(1000000);
const projectDir = path.join(__dirname, '..', '..', '..');
const env = new Env(projectDir);
Expand Down

0 comments on commit 1475ec4

Please sign in to comment.