mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
remove the EncryptionUnspecified enum value
This commit is contained in:
parent
ebe051b2cc
commit
bbd9fa4862
6 changed files with 19 additions and 19 deletions
|
@ -6,8 +6,12 @@ import (
|
|||
)
|
||||
|
||||
var _ = Describe("Encryption Level", func() {
|
||||
It("doesn't use 0 as a value", func() {
|
||||
// 0 is used in some tests
|
||||
Expect(EncryptionInitial * EncryptionHandshake * Encryption0RTT * Encryption1RTT).ToNot(BeZero())
|
||||
})
|
||||
|
||||
It("has the correct string representation", func() {
|
||||
Expect(EncryptionUnspecified.String()).To(Equal("unknown"))
|
||||
Expect(EncryptionInitial.String()).To(Equal("Initial"))
|
||||
Expect(EncryptionHandshake.String()).To(Equal("Handshake"))
|
||||
Expect(Encryption0RTT.String()).To(Equal("0-RTT"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue