mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
remove stream ID from OpenStream() method
This commit is contained in:
parent
8cd1e4484c
commit
f47142eaac
9 changed files with 424 additions and 423 deletions
|
@ -109,9 +109,9 @@ var _ = Describe("Client", func() {
|
|||
})
|
||||
|
||||
It("opens a stream", func() {
|
||||
stream, err := client.OpenStream(1337)
|
||||
stream, err := client.OpenStream()
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(stream.StreamID()).To(Equal(protocol.StreamID(1337)))
|
||||
Expect(stream).ToNot(BeNil())
|
||||
})
|
||||
|
||||
Context("handling packets", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue