mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
refactor retransmissionQueue to remove version param from constructor
This commit is contained in:
parent
5c7d120b8f
commit
582edae63d
6 changed files with 44 additions and 48 deletions
|
@ -85,7 +85,7 @@ var _ = Describe("Packet packer", func() {
|
|||
|
||||
BeforeEach(func() {
|
||||
rand.Seed(GinkgoRandomSeed())
|
||||
retransmissionQueue = newRetransmissionQueue(version)
|
||||
retransmissionQueue = newRetransmissionQueue()
|
||||
mockSender := NewMockStreamSender(mockCtrl)
|
||||
mockSender.EXPECT().onHasStreamData(gomock.Any()).AnyTimes()
|
||||
initialStream = NewMockCryptoStream(mockCtrl)
|
||||
|
@ -1593,7 +1593,7 @@ var _ = Describe("Converting to ackhandler.Packet", func() {
|
|||
{Frame: &wire.PingFrame{}, OnLost: func(wire.Frame) { pingLost = true }},
|
||||
},
|
||||
}
|
||||
p := packet.ToAckHandlerPacket(time.Now(), newRetransmissionQueue(protocol.VersionTLS))
|
||||
p := packet.ToAckHandlerPacket(time.Now(), newRetransmissionQueue())
|
||||
Expect(p.Frames).To(HaveLen(2))
|
||||
Expect(p.Frames[0].OnLost).ToNot(BeNil())
|
||||
p.Frames[1].OnLost(nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue