mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename the cryptoStreamI interface to cryptoStream
This commit is contained in:
parent
40050f558d
commit
04147d86da
9 changed files with 20 additions and 20 deletions
|
@ -9,13 +9,13 @@ import (
|
|||
|
||||
var _ = Describe("Crypto Stream", func() {
|
||||
var (
|
||||
str *cryptoStream
|
||||
str *cryptoStreamImpl
|
||||
mockSender *MockStreamSender
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
mockSender = NewMockStreamSender(mockCtrl)
|
||||
str = newCryptoStream(mockSender, nil, protocol.VersionWhatever).(*cryptoStream)
|
||||
str = newCryptoStream(mockSender, nil, protocol.VersionWhatever).(*cryptoStreamImpl)
|
||||
})
|
||||
|
||||
It("sets the read offset", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue