make the stream deletion error message more specific

This commit is contained in:
Marten Seemann 2019-11-08 11:09:54 +07:00
parent 394ff04fb1
commit 4b58bc0d07
9 changed files with 16 additions and 16 deletions

View file

@ -74,7 +74,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
It("errors when deleting a non-existing stream", func() {
err := m.DeleteStream(1337)
Expect(err).To(HaveOccurred())
Expect(err.(streamError).TestError()).To(MatchError("Tried to delete unknown stream 1337"))
Expect(err.(streamError).TestError()).To(MatchError("Tried to delete unknown outgoing stream 1337"))
})
It("errors when deleting a stream twice", func() {
@ -83,7 +83,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
Expect(m.DeleteStream(1)).To(Succeed())
err = m.DeleteStream(1)
Expect(err).To(HaveOccurred())
Expect(err.(streamError).TestError()).To(MatchError("Tried to delete unknown stream 1"))
Expect(err.(streamError).TestError()).To(MatchError("Tried to delete unknown outgoing stream 1"))
})
It("closes all streams when CloseWithError is called", func() {