mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename ResetStreamFrame.ByteOffset to FinalSize
This commit is contained in:
parent
cc340b2887
commit
865332015c
13 changed files with 50 additions and 50 deletions
|
@ -685,9 +685,9 @@ var _ = Describe("Send Stream", func() {
|
|||
It("queues a RESET_STREAM frame", func() {
|
||||
gomock.InOrder(
|
||||
mockSender.EXPECT().queueControlFrame(&wire.ResetStreamFrame{
|
||||
StreamID: streamID,
|
||||
ByteOffset: 1234,
|
||||
ErrorCode: 9876,
|
||||
StreamID: streamID,
|
||||
FinalSize: 1234,
|
||||
ErrorCode: 9876,
|
||||
}),
|
||||
mockSender.EXPECT().onStreamCompleted(streamID),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue