mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
remove unused error return value from HandleMaxStreamsFrame
This commit is contained in:
parent
3b916f2e80
commit
8a0b1dd78d
5 changed files with 12 additions and 24 deletions
|
@ -247,16 +247,7 @@ var _ = Describe("Session", func() {
|
|||
MaxStreamNum: 10,
|
||||
}
|
||||
streamManager.EXPECT().HandleMaxStreamsFrame(f)
|
||||
err := sess.handleMaxStreamsFrame(f)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
})
|
||||
|
||||
It("returns errors", func() {
|
||||
f := &wire.MaxStreamsFrame{MaxStreamNum: 10}
|
||||
testErr := errors.New("test error")
|
||||
streamManager.EXPECT().HandleMaxStreamsFrame(f).Return(testErr)
|
||||
err := sess.handleMaxStreamsFrame(f)
|
||||
Expect(err).To(MatchError(testErr))
|
||||
sess.handleMaxStreamsFrame(f)
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue