remove some unneccessary type conversions

This commit is contained in:
Marten Seemann 2019-02-17 12:09:18 +08:00
parent 1e796fed4f
commit fbe8844006
7 changed files with 14 additions and 14 deletions

View file

@ -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))
})
})
})