mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix incorrect usage of errors.Is
errors.Is is supposed to used for equality of errors, not for type assertions. That's what errors.As is there for.
This commit is contained in:
parent
a887f8f436
commit
dbb517858e
10 changed files with 37 additions and 133 deletions
|
@ -371,7 +371,8 @@ var _ = Describe("MITM test", func() {
|
|||
}
|
||||
err := runTest(delayCb)
|
||||
Expect(err).To(HaveOccurred())
|
||||
Expect(err).To(MatchError(&quic.VersionNegotiationError{}))
|
||||
vnErr := &quic.VersionNegotiationError{}
|
||||
Expect(errors.As(err, &vnErr)).To(BeTrue())
|
||||
})
|
||||
|
||||
// times out, because client doesn't accept subsequent real retry packets from server
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue