mirror of
https://github.com/golang/go.git
synced 2026-06-27 03:11:23 +00:00
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:
parent
24e654197a
commit
063f8b07c1
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue