mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix a flaky proxy test
This commit is contained in:
parent
3f9212b5f7
commit
ace7f609a3
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ var _ = Describe("QUIC Proxy", func() {
|
|||
Eventually(getClientDict).Should(HaveLen(1))
|
||||
var conn *connection
|
||||
for _, conn = range getClientDict() {
|
||||
Expect(atomic.LoadUint64(&conn.incomingPacketCounter)).To(Equal(uint64(1)))
|
||||
Eventually(func() uint64 { return atomic.LoadUint64(&conn.incomingPacketCounter) }).Should(Equal(uint64(1)))
|
||||
}
|
||||
|
||||
// send the second packet
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue