mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
remove some unneccessary type conversions
This commit is contained in:
parent
1e796fed4f
commit
fbe8844006
7 changed files with 14 additions and 14 deletions
|
@ -75,7 +75,7 @@ var _ = Describe("Connection Flow controller", func() {
|
|||
dataRead := windowSize/2 - 1 // make sure not to trigger auto-tuning
|
||||
controller.AddBytesRead(dataRead)
|
||||
offset := controller.GetWindowUpdate()
|
||||
Expect(offset).To(Equal(protocol.ByteCount(oldOffset + dataRead + 60)))
|
||||
Expect(offset).To(Equal(oldOffset + dataRead + 60))
|
||||
})
|
||||
|
||||
It("autotunes the window", func() {
|
||||
|
@ -90,7 +90,7 @@ var _ = Describe("Connection Flow controller", func() {
|
|||
offset := controller.GetWindowUpdate()
|
||||
newWindowSize := controller.receiveWindowSize
|
||||
Expect(newWindowSize).To(Equal(2 * oldWindowSize))
|
||||
Expect(offset).To(Equal(protocol.ByteCount(oldOffset + dataRead + newWindowSize)))
|
||||
Expect(offset).To(Equal(oldOffset + dataRead + newWindowSize))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue