mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix flaky outgoing streams map test (#4283)
This commit is contained in:
parent
03ba124241
commit
34c4d89e8b
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
defer m.mutex.Unlock()
|
defer m.mutex.Unlock()
|
||||||
return len(m.openQueue)
|
return len(m.openQueue)
|
||||||
}, 50*time.Millisecond, 100*time.Microsecond).Should(Equal(n))
|
}, scaleDuration(100*time.Millisecond), scaleDuration(10*time.Microsecond)).Should(Equal(n))
|
||||||
}
|
}
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue