use stream 0 for the crypto stream when using TLS

This commit is contained in:
Marten Seemann 2017-11-01 13:51:47 +07:00
parent 05f6e1cf8e
commit f662822486
16 changed files with 93 additions and 59 deletions

View file

@ -59,7 +59,7 @@ var _ = Describe("Stream", func() {
onDataCalled = false
resetCalled = false
mockFC = mocks.NewMockStreamFlowController(mockCtrl)
str = newStream(streamID, onData, onReset, mockFC)
str = newStream(streamID, onData, onReset, mockFC, protocol.VersionWhatever)
timeout := scaleDuration(250 * time.Millisecond)
strWithTimeout = struct {