mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
include the frame type in the error returned by the frame parser
This commit is contained in:
parent
76c742a43d
commit
dbdccfa70a
2 changed files with 4 additions and 3 deletions
|
@ -273,7 +273,7 @@ var _ = Describe("Frame parsing", func() {
|
|||
|
||||
It("errors on invalid type", func() {
|
||||
_, err := parser.ParseNext(bytes.NewReader([]byte{0x42}), protocol.Encryption1RTT)
|
||||
Expect(err).To(MatchError("FRAME_ENCODING_ERROR: unknown type byte 0x42"))
|
||||
Expect(err).To(MatchError("FRAME_ENCODING_ERROR (frame type: 0x42): unknown frame type"))
|
||||
})
|
||||
|
||||
It("errors on invalid frames", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue