fix flaky packet number skipping test

This commit is contained in:
Marten Seemann 2020-09-15 10:58:12 +07:00
parent 1914e5f100
commit 5eaab73043

View file

@ -706,7 +706,8 @@ var _ = Describe("SentPacketHandler", func() {
}))
Expect(handler.OnLossDetectionTimeout()).To(Succeed())
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() {