Unverified Commit d864192b authored by Kenton Varda's avatar Kenton Varda Committed by GitHub

Merge pull request #910 from capnproto/jlee/update-tls-error-message

tls-test: Update error message to match new boringssl behavior
parents 24f4e735 1c350f40
...@@ -531,7 +531,7 @@ KJ_TEST("TLS client certificate verification") { ...@@ -531,7 +531,7 @@ KJ_TEST("TLS client certificate verification") {
serverPromise.wait(test.io.waitScope)); serverPromise.wait(test.io.waitScope));
KJ_EXPECT_THROW_MESSAGE( KJ_EXPECT_THROW_MESSAGE(
SSL_MESSAGE("alert", // "alert handshake failure" or "alert certificate required" SSL_MESSAGE("alert", // "alert handshake failure" or "alert certificate required"
"SSLV3_ALERT_HANDSHAKE_FAILURE"), "TLSV1_CERTIFICATE_REQUIRED"),
clientPromise.wait(test.io.waitScope)); clientPromise.wait(test.io.waitScope));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment