| commit | e40660c2651250bc9a65a364a6f88463876d8a34 | [log] [tgz] |
|---|---|---|
| author | Dmitri Shuralyov <dmitshur@golang.org> | Tue Aug 12 18:38:59 2025 -0400 |
| committer | Gopher Robot <gobot@golang.org> | Wed Aug 13 07:20:26 2025 -0700 |
| tree | 6fb1641750a6a6c2ddcd7a1fdf7528a23ea1ca20 | |
| parent | 8866876b956fadd4905eb7f49d5d5301d0bc7644 [diff] |
gopls/internal/test/integration/completion: skip a_test.go For golang/go#74987. Change-Id: I86ed2c86e284bd7d1cf673c8ec7b8b23d8f62c05 Reviewed-on: https://go-review.googlesource.com/c/tools/+/695357 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
diff --git a/gopls/internal/test/integration/completion/completion18_test.go b/gopls/internal/test/integration/completion/completion18_test.go index c834878..bf12986 100644 --- a/gopls/internal/test/integration/completion/completion18_test.go +++ b/gopls/internal/test/integration/completion/completion18_test.go
@@ -109,6 +109,9 @@ } Run(t, data, func(t *testing.T, env *Env) { for _, test := range tests { + if test.file == "a_test.go" { + t.Skip("go.dev/issue/74987: needs updating to pass after CL 695417") + } env.OpenFile(test.file) env.Await(env.DoneWithOpen()) loc := env.RegexpSearch(test.file, test.pat)