mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use the correct error code for crypto stream errors
This commit is contained in:
parent
1cd1c3f54d
commit
df06ee5e37
2 changed files with 2 additions and 3 deletions
|
@ -97,7 +97,7 @@ var _ = Describe("Crypto Stream", func() {
|
|||
Offset: 10,
|
||||
})).To(Succeed())
|
||||
err := str.Finish()
|
||||
Expect(err).To(MatchError("encryption level changed, but crypto stream has more data to read"))
|
||||
Expect(err).To(MatchError("PROTOCOL_VIOLATION: encryption level changed, but crypto stream has more data to read"))
|
||||
})
|
||||
|
||||
It("works with reordered data", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue