crypto/tls: fix broken quic_test.go

Change-Id: I43f805d88553f858866fe82178b3dea22fe74a43
Reviewed-on: https://go-review.googlesource.com/c/go/+/779622
Reviewed-by: Neal Patel <nealpatel@google.com>
Reviewed-by: Nicholas Husin <nsh@golang.org>
Auto-Submit: Neal Patel <nealpatel@google.com>
Reviewed-by: Nicholas Husin <husin@google.com>
LUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
Neal Patel 2026-05-19 17:09:05 -04:00
parent 24e654197a
commit 063f8b07c1

View file

@ -249,10 +249,10 @@ func TestQUICVersions(t *testing.T) {
},
} {
t.Run(tc.name, func(t *testing.T) {
client := testConfig.Clone()
client := testConfigClient.Clone()
client.MinVersion = tc.clientMin
client.MaxVersion = tc.clientMax
server := testConfig.Clone()
server := testConfigServer.Clone()
server.MinVersion = tc.serverMin
server.MaxVersion = tc.serverMax