mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove unused version parameter from stream constructor
This commit is contained in:
parent
0f352f2653
commit
d972a5e8f2
3 changed files with 4 additions and 7 deletions
|
@ -40,7 +40,7 @@ var _ = Describe("Stream", func() {
|
|||
BeforeEach(func() {
|
||||
mockSender = NewMockStreamSender(mockCtrl)
|
||||
mockFC = mocks.NewMockStreamFlowController(mockCtrl)
|
||||
str = newStream(streamID, mockSender, mockFC, protocol.VersionWhatever)
|
||||
str = newStream(streamID, mockSender, mockFC)
|
||||
|
||||
timeout := scaleDuration(250 * time.Millisecond)
|
||||
strWithTimeout = struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue