http3: fix flaky TestTransportConnectionRedial (#4884)

This commit is contained in:
Marten Seemann 2025-01-17 21:14:44 -08:00 committed by GitHub
parent 0fd2decbd5
commit ceabb6bd9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -283,7 +283,7 @@ func testTransportConnectionRedial(t *testing.T, connClosed bool, roundtripErr,
conn := mockquic.NewMockEarlyConnection(mockCtrl)
handshakeChan := make(chan struct{})
close(handshakeChan)
conn.EXPECT().HandshakeComplete().Return(handshakeChan).MaxTimes(2)
conn.EXPECT().HandshakeComplete().Return(handshakeChan).AnyTimes()
var dialCount int
tr := &Transport{
Dial: func(context.Context, string, *tls.Config, *quic.Config) (quic.EarlyConnection, error) {