diff --git a/integrationtests/self/cancelation_test.go b/integrationtests/self/cancelation_test.go index 28f3e009a968..f79fc886c4d9 100644 --- a/integrationtests/self/cancelation_test.go +++ b/integrationtests/self/cancelation_test.go @@ -246,6 +246,7 @@ var _ = Describe("Stream Cancellations", func() { Expect(err).To(MatchError(&quic.StreamError{ StreamID: str.StreamID(), ErrorCode: quic.StreamErrorCode(str.StreamID()), + Remote: true, })) return } @@ -396,6 +397,7 @@ var _ = Describe("Stream Cancellations", func() { Expect(err).To(MatchError(&quic.StreamError{ StreamID: str.StreamID(), ErrorCode: quic.StreamErrorCode(str.StreamID()), + Remote: true, })) return } @@ -441,6 +443,7 @@ var _ = Describe("Stream Cancellations", func() { Expect(err).To(MatchError(&quic.StreamError{ StreamID: str.StreamID(), ErrorCode: quic.StreamErrorCode(str.StreamID()), + Remote: true, })) return }