change supported version to slice, since the order matters for the SHLO

This commit is contained in:
Lucas Clemente 2016-04-16 00:27:03 +02:00
parent 13c0445bb4
commit a2ef4d2dc8
3 changed files with 39 additions and 10 deletions

View file

@ -17,4 +17,8 @@ var _ = Describe("Version", func() {
Expect(protocol.VersionNumberToTag(protocol.VersionNumber(123))).To(Equal(uint32('Q' + '1'<<8 + '2'<<16 + '3'<<24)))
Expect(protocol.VersionNumberToTag(protocol.VersionNumber(30))).To(Equal(uint32('Q' + '0'<<8 + '3'<<16 + '0'<<24)))
})
It("has proper tag list", func() {
Expect(protocol.SupportedVersionsAsTags).To(Equal([]byte("Q030Q032")))
})
})