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
|
@ -1289,7 +1289,7 @@ var _ = Describe("Connection", func() {
|
|||
|
||||
Context(fmt.Sprintf("sending %s probe packets", encLevel), func() {
|
||||
var sendMode ackhandler.SendMode
|
||||
var getFrame func(protocol.ByteCount) wire.Frame
|
||||
var getFrame func(protocol.ByteCount, protocol.VersionNumber) wire.Frame
|
||||
|
||||
BeforeEach(func() {
|
||||
//nolint:exhaustive
|
||||
|
@ -1356,7 +1356,7 @@ var _ = Describe("Connection", func() {
|
|||
Eventually(sent).Should(BeClosed())
|
||||
// We're using a mock packet packer in this test.
|
||||
// We therefore need to test separately that the PING was actually queued.
|
||||
Expect(getFrame(1000)).To(BeAssignableToTypeOf(&wire.PingFrame{}))
|
||||
Expect(getFrame(1000, protocol.Version1)).To(BeAssignableToTypeOf(&wire.PingFrame{}))
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue