mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix flaky client test (#3834)
This commit is contained in:
parent
a49fa6a682
commit
1c3292d120
1 changed files with 1 additions and 1 deletions
|
@ -293,7 +293,7 @@ var _ = Describe("Client", func() {
|
|||
conn := NewMockQUICConn(mockCtrl)
|
||||
conn.EXPECT().run()
|
||||
conn.EXPECT().HandshakeComplete().Return(make(chan struct{}))
|
||||
conn.EXPECT().destroy(gomock.Any())
|
||||
conn.EXPECT().destroy(gomock.Any()).MaxTimes(1)
|
||||
close(done)
|
||||
return conn
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue