mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
fix flaky packet number skipping test
This commit is contained in:
parent
1914e5f100
commit
5eaab73043
1 changed files with 2 additions and 1 deletions
|
@ -706,7 +706,8 @@ var _ = Describe("SentPacketHandler", func() {
|
||||||
}))
|
}))
|
||||||
Expect(handler.OnLossDetectionTimeout()).To(Succeed())
|
Expect(handler.OnLossDetectionTimeout()).To(Succeed())
|
||||||
Expect(handler.SendMode()).To(Equal(SendPTOAppData))
|
Expect(handler.SendMode()).To(Equal(SendPTOAppData))
|
||||||
Expect(handler.PopPacketNumber(protocol.Encryption1RTT)).To(Equal(pn + 2))
|
// The packet number generator might have introduced another skipped a packet number.
|
||||||
|
Expect(handler.PopPacketNumber(protocol.Encryption1RTT)).To(BeNumerically(">=", pn+2))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("only counts ack-eliciting packets as probe packets", func() {
|
It("only counts ack-eliciting packets as probe packets", func() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue