Skip to content

Commit

Permalink
Unbreaking build (#2490)
Browse files Browse the repository at this point in the history
Adding "" to the tests to fix a bad merge.

Risk Level: n/a
Testing: yep
Docs Changes: n/a
Release Notes: n/a

Signed-off-by: Alyssa Wilk <[email protected]>
  • Loading branch information
alyssawilk authored and htuch committed Jan 31, 2018
1 parent ad0f4fb commit 4548c65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/common/ssl/ssl_socket_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1906,8 +1906,8 @@ TEST_P(SslSocketTest, RevokedCertificate) {
"private_key_file": "{{ test_rundir }}/test/common/ssl/test_data/san_dns_key.pem"
}
)EOF";
testUtil(revoked_client_ctx_json, server_ctx_json, "", "", "", "", "", "ssl.fail_verify_error",
false, GetParam());
testUtil(revoked_client_ctx_json, server_ctx_json, "", "", "", "", "", "",
"ssl.fail_verify_error", false, GetParam());

// This should succeed, since the cert isn't revoked.
std::string successful_client_ctx_json = R"EOF(
Expand All @@ -1916,8 +1916,8 @@ TEST_P(SslSocketTest, RevokedCertificate) {
"private_key_file": "{{ test_rundir }}/test/common/ssl/test_data/san_dns_key2.pem"
}
)EOF";
testUtil(successful_client_ctx_json, server_ctx_json, "", "", "", "", "", "ssl.handshake", true,
GetParam());
testUtil(successful_client_ctx_json, server_ctx_json, "", "", "", "", "", "", "ssl.handshake",
true, GetParam());
}

class SslReadBufferLimitTest : public SslCertsTest,
Expand Down

0 comments on commit 4548c65

Please sign in to comment.