protocol: remove VersionWhatever, previously used for testing (#3763)

This commit is contained in:
Marten Seemann 2023-04-19 15:19:27 +02:00 committed by GitHub
parent 3ebdd1df5e
commit f36690ae9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 43 additions and 48 deletions

View file

@ -171,7 +171,7 @@ var _ = Describe("Crypto Stream", func() {
})
It("respects the maximum size", func() {
frameHeaderLen := (&wire.CryptoFrame{}).Length(protocol.VersionWhatever)
frameHeaderLen := (&wire.CryptoFrame{}).Length(protocol.Version1)
_, err := str.Write([]byte("foobar"))
Expect(err).ToNot(HaveOccurred())
f := str.PopCryptoFrame(frameHeaderLen + 3)