| commit | acc38155b7f6f36aefcb58faff6f36d314dd915c | [log] [tgz] |
|---|---|---|
| author | Dmitri Shuralyov <[email protected]> | Fri Nov 28 17:14:57 2025 |
| committer | Gopher Robot <[email protected]> | Mon Dec 01 17:43:47 2025 |
| tree | 1a69d016fa7d0bd2912cfd305ab17f77fcc6da4a | |
| parent | f28b0b5467dda26d56f1240381158f7c334654d1 [diff] |
endpoints: fix %q verb use with wrong type Caught early by the improved vet check gated behind the 1.26 language version combined with a tiplang builder that tests with 1.26 language version. Change-Id: Ie41542014acbbf24464111bd8dabb040ab0a0dea Cq-Include-Trybots: luci.golang.try:x_oauth2-gotip-linux-amd64-tiplang Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/725240 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Mark Freeman <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Sean Liao <[email protected]>
diff --git a/endpoints/endpoints_test.go b/endpoints/endpoints_test.go index 4ffa314..296ac65 100644 --- a/endpoints/endpoints_test.go +++ b/endpoints/endpoints_test.go
@@ -36,7 +36,7 @@ t.Run(tt.in, func(t *testing.T) { endpoint := AWSCognito(tt.in) if endpoint != tt.out { - t.Errorf("got %q, want %q", endpoint, tt.out) + t.Errorf("got %#v, want %#v", endpoint, tt.out) } }) }