mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add support for Go 1.15
This commit is contained in:
parent
0711119b96
commit
125318d9c9
13 changed files with 175 additions and 4 deletions
|
@ -371,7 +371,6 @@ var _ = Describe("Handshake tests", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
cs := sess.ConnectionState()
|
||||
Expect(cs.NegotiatedProtocol).To(Equal(alpn))
|
||||
Expect(cs.NegotiatedProtocolIsMutual).To(BeTrue())
|
||||
close(done)
|
||||
}()
|
||||
|
||||
|
@ -384,7 +383,6 @@ var _ = Describe("Handshake tests", func() {
|
|||
defer sess.CloseWithError(0, "")
|
||||
cs := sess.ConnectionState()
|
||||
Expect(cs.NegotiatedProtocol).To(Equal(alpn))
|
||||
Expect(cs.NegotiatedProtocolIsMutual).To(BeTrue())
|
||||
Eventually(done).Should(BeClosed())
|
||||
Expect(ln.Close()).To(Succeed())
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue