include the error code in the string for CRYPTO_ERRORs

This commit is contained in:
Marten Seemann 2020-09-25 20:12:25 +07:00
parent 7999b7699a
commit 77f7476bf7
4 changed files with 10 additions and 10 deletions

View file

@ -105,7 +105,7 @@ var _ = Describe("Crypto Setup TLS", func() {
go func() {
defer GinkgoRecover()
server.RunHandshake()
Expect(sErrChan).To(Receive(MatchError("CRYPTO_ERROR: local error: tls: unexpected message")))
Expect(sErrChan).To(Receive(MatchError("CRYPTO_ERROR (0x10a): local error: tls: unexpected message")))
close(done)
}()