fix flaky client test (#3834)

This commit is contained in:
Marten Seemann 2023-06-02 12:58:07 +03:00 committed by GitHub
parent a49fa6a682
commit 1c3292d120
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}