gopls/bench: disable one DidChange benchmark

The case in BenchmarkDiagnoseSave for kubernetes.types
has been failing on the builders since at least August,
although it runs fine locally on mac and glinux.

This CL disables it.

Fixes: golang/go#76873

Change-Id: Ib8d68215c18d5eb085661a5716e4f76473c3e34a
Reviewed-on: https://go-review.googlesource.com/c/tools/+/735181
Reviewed-by: Madeline Kalil <mkalil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
diff --git a/gopls/internal/test/integration/bench/didchange_test.go b/gopls/internal/test/integration/bench/didchange_test.go
index 5dc7c65..674b1db 100644
--- a/gopls/internal/test/integration/bench/didchange_test.go
+++ b/gopls/internal/test/integration/bench/didchange_test.go
@@ -30,7 +30,9 @@
 	{"google-cloud-go", "internal/annotate.go", true},
 	{"istio", "pkg/fuzz/util.go", true},
 	{"kubernetes", "pkg/controller/lookup_cache.go", true},
-	{"kubernetes.types", "staging/src/k8s.io/api/core/v1/types.go", true}, // results in 25K file batch!
+	// disable kubernetes.types as it fails on the builders, but not locally on mac or glinux
+	// error is didchange_test.go:134: formatting before save: editing "..."": column is beyond end of line;
+	{"kubernetes.types", "staging/src/k8s.io/api/core/v1/types.go", false}, // results in 25K file batch!
 	{"kuma", "api/generic/insights.go", true},
 	{"oracle", "dataintegration/data_type.go", false}, // diagnoseSave fails because this package is generated
 	{"pkgsite", "internal/frontend/server.go", true},