mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix flaky server test on Travis
This commit is contained in:
parent
05f9428b34
commit
084e4feb9b
1 changed files with 4 additions and 1 deletions
|
@ -645,7 +645,10 @@ var _ = Describe("Server", func() {
|
|||
wg.Wait()
|
||||
|
||||
close(acceptSession)
|
||||
Eventually(func() uint32 { return atomic.LoadUint32(&counter) }).Should(BeEquivalentTo(protocol.MaxServerUnprocessedPackets + 1))
|
||||
Eventually(
|
||||
func() uint32 { return atomic.LoadUint32(&counter) },
|
||||
scaleDuration(100*time.Millisecond),
|
||||
).Should(BeEquivalentTo(protocol.MaxServerUnprocessedPackets + 1))
|
||||
Consistently(func() uint32 { return atomic.LoadUint32(&counter) }).Should(BeEquivalentTo(protocol.MaxServerUnprocessedPackets + 1))
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue