mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename frame.Write to frame.Append
This commit is contained in:
parent
3ca1001951
commit
ab6d664b43
50 changed files with 112 additions and 112 deletions
|
@ -43,7 +43,7 @@ var _ = Describe("Streams Map (incoming)", func() {
|
|||
|
||||
// check that the frame can be serialized and deserialized
|
||||
checkFrameSerialization := func(f wire.Frame) {
|
||||
b, err := f.Write(nil, protocol.VersionTLS)
|
||||
b, err := f.Append(nil, protocol.VersionTLS)
|
||||
ExpectWithOffset(1, err).ToNot(HaveOccurred())
|
||||
frame, err := wire.NewFrameParser(false, protocol.VersionTLS).ParseNext(bytes.NewReader(b), protocol.Encryption1RTT)
|
||||
ExpectWithOffset(1, err).ToNot(HaveOccurred())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue