remove stream ID from OpenStream() method

This commit is contained in:
Marten Seemann 2017-02-09 17:05:58 +07:00
parent 8cd1e4484c
commit f47142eaac
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
9 changed files with 424 additions and 423 deletions

View file

@ -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() {