Skip to content

Commit

Permalink
Fix tests related to StreamError
Browse files Browse the repository at this point in the history
  • Loading branch information
nekohasekai committed Apr 15, 2024
1 parent 07904f6 commit e84d1f5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions integrationtests/self/cancelation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down Expand Up @@ -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
}
Expand Down Expand Up @@ -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
}
Expand Down

0 comments on commit e84d1f5

Please sign in to comment.