aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/handshake
diff options
context:
space:
mode:
authorGravatar Dave MacLachlan <dmaclach@gmail.com>2017-11-30 12:48:22 -0800
committerGravatar Dave MacLachlan <dmaclach@gmail.com>2017-11-30 12:48:22 -0800
commitda341bcb8969264800f63eac718e5b483aba9896 (patch)
treea9aaca3c9bcbbc8b296646d715947e59ffc9db25 /test/core/handshake
parent8a631a2b052330b169fd52d7fb7efea2c149d3a5 (diff)
Fix up review comments
Diffstat (limited to 'test/core/handshake')
-rw-r--r--test/core/handshake/client_ssl.cc2
-rw-r--r--test/core/handshake/server_ssl_common.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/core/handshake/client_ssl.cc b/test/core/handshake/client_ssl.cc
index 21147ef445..2302e3da2f 100644
--- a/test/core/handshake/client_ssl.cc
+++ b/test/core/handshake/client_ssl.cc
@@ -231,7 +231,7 @@ static bool client_ssl_test(char* server_alpn_preferred) {
gpr_thd_id thdid;
gpr_thd_options_set_joinable(&thdopt);
server_args args = {server_socket, server_alpn_preferred};
- GPR_ASSERT(gpr_thd_new(&thdid, "gpr_client_ssl_test", server_thread, &args,
+ GPR_ASSERT(gpr_thd_new(&thdid, "grpc_client_ssl_test", server_thread, &args,
&thdopt));
// Load key pair and establish client SSL credentials.
diff --git a/test/core/handshake/server_ssl_common.cc b/test/core/handshake/server_ssl_common.cc
index 9b06d31ab2..001d4e24ca 100644
--- a/test/core/handshake/server_ssl_common.cc
+++ b/test/core/handshake/server_ssl_common.cc
@@ -137,7 +137,7 @@ bool server_ssl_test(const char* alpn_list[], unsigned int alpn_list_len,
gpr_thd_options thdopt = gpr_thd_options_default();
gpr_thd_id thdid;
gpr_thd_options_set_joinable(&thdopt);
- GPR_ASSERT(gpr_thd_new(&thdid, "gpr_ssl_test", server_thread, &port,
+ GPR_ASSERT(gpr_thd_new(&thdid, "grpc_ssl_test", server_thread, &port,
&thdopt));
SSL_load_error_strings();