Skip to content

Commit

Permalink
fix flaky outgoing streams map test (quic-go#4283)
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann authored and mgjeong committed Feb 13, 2024
1 parent 384d0e9 commit 7edd0ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streams_map_outgoing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
m.mutex.Lock()
defer m.mutex.Unlock()
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() {
Expand Down

0 comments on commit 7edd0ad

Please sign in to comment.