add support for Go 1.15

This commit is contained in:
Marten Seemann 2020-08-13 13:21:53 +07:00
parent 0711119b96
commit 125318d9c9
13 changed files with 175 additions and 4 deletions

View file

@ -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())
})