Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
test/gopls: fix the lint error (#3209)
Browse files Browse the repository at this point in the history
The lint rule was changed since PR #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 authored Apr 28, 2020
1 parent b5d4c6d commit e8e97e5
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 e8e97e5

Please sign in to comment.