rename the cryptoStreamI interface to cryptoStream

This commit is contained in:
Marten Seemann 2018-08-11 12:24:51 +07:00
parent 40050f558d
commit 04147d86da
9 changed files with 20 additions and 20 deletions

View file

@ -345,7 +345,7 @@ var _ = Describe("Session", func() {
fc := mocks.NewMockStreamFlowController(mockCtrl)
offset := protocol.ByteCount(0x4321)
fc.EXPECT().UpdateSendWindow(offset)
sess.cryptoStream.(*cryptoStream).sendStream.flowController = fc
sess.cryptoStream.(*cryptoStreamImpl).sendStream.flowController = fc
err := sess.handleMaxStreamDataFrame(&wire.MaxStreamDataFrame{
StreamID: sess.version.CryptoStreamID(),
ByteOffset: offset,