mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
http3: fix flaky TestTransportConnectionRedial (#4884)
This commit is contained in:
parent
0fd2decbd5
commit
ceabb6bd9a
1 changed files with 1 additions and 1 deletions
|
@ -283,7 +283,7 @@ func testTransportConnectionRedial(t *testing.T, connClosed bool, roundtripErr,
|
||||||
conn := mockquic.NewMockEarlyConnection(mockCtrl)
|
conn := mockquic.NewMockEarlyConnection(mockCtrl)
|
||||||
handshakeChan := make(chan struct{})
|
handshakeChan := make(chan struct{})
|
||||||
close(handshakeChan)
|
close(handshakeChan)
|
||||||
conn.EXPECT().HandshakeComplete().Return(handshakeChan).MaxTimes(2)
|
conn.EXPECT().HandshakeComplete().Return(handshakeChan).AnyTimes()
|
||||||
var dialCount int
|
var dialCount int
|
||||||
tr := &Transport{
|
tr := &Transport{
|
||||||
Dial: func(context.Context, string, *tls.Config, *quic.Config) (quic.EarlyConnection, error) {
|
Dial: func(context.Context, string, *tls.Config, *quic.Config) (quic.EarlyConnection, error) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue