mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +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
|
@ -62,10 +62,10 @@ var _ = Describe("Stream Framer", func() {
|
|||
for i := 0; i < numFrames+1; i++ {
|
||||
framer.QueueControlFrame(bf)
|
||||
}
|
||||
frames, length := framer.AppendControlFrames(nil, protocol.ByteCount(maxSize))
|
||||
frames, length := framer.AppendControlFrames(nil, maxSize)
|
||||
Expect(frames).To(HaveLen(numFrames))
|
||||
Expect(length).To(BeNumerically(">", maxSize-bfLen))
|
||||
frames, length = framer.AppendControlFrames(nil, protocol.ByteCount(maxSize))
|
||||
frames, length = framer.AppendControlFrames(nil, maxSize)
|
||||
Expect(frames).To(HaveLen(1))
|
||||
Expect(length).To(Equal(bfLen))
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue