mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
Remove unnecessary error return value in newStream
This commit is contained in:
parent
df230ca1e2
commit
1311629830
5 changed files with 13 additions and 40 deletions
|
@ -59,8 +59,8 @@ var _ = Describe("Streams Map", func() {
|
|||
|
||||
setNewStreamsMap := func(p protocol.Perspective) {
|
||||
m = newStreamsMap(nil, p, cpm)
|
||||
m.newStream = func(id protocol.StreamID) (*stream, error) {
|
||||
return &stream{streamID: id}, nil
|
||||
m.newStream = func(id protocol.StreamID) *stream {
|
||||
return &stream{streamID: id}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -174,13 +174,6 @@ var _ = Describe("Streams Map", func() {
|
|||
Expect(m.numOutgoingStreams).To(BeEquivalentTo(1))
|
||||
})
|
||||
|
||||
It("errors if the stream can't be created", func() {
|
||||
testErr := errors.New("test error")
|
||||
m.newStream = func(protocol.StreamID) (*stream, error) { return nil, testErr }
|
||||
_, err := m.OpenStream()
|
||||
Expect(err).To(MatchError(testErr))
|
||||
})
|
||||
|
||||
It("returns the error when the streamsMap was closed", func() {
|
||||
testErr := errors.New("test error")
|
||||
m.CloseWithError(testErr)
|
||||
|
@ -259,13 +252,6 @@ var _ = Describe("Streams Map", func() {
|
|||
Expect(str.StreamID()).To(Equal(protocol.StreamID(2*maxNumStreams + 2)))
|
||||
})
|
||||
|
||||
It("errors if the stream can't be created", func() {
|
||||
testErr := errors.New("test error")
|
||||
m.newStream = func(protocol.StreamID) (*stream, error) { return nil, testErr }
|
||||
_, err := m.OpenStreamSync()
|
||||
Expect(err).To(MatchError(testErr))
|
||||
})
|
||||
|
||||
It("stops waiting when an error is registered", func() {
|
||||
openMaxNumStreams()
|
||||
testErr := errors.New("test error")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue