aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/http/httpscli_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/http/httpscli_test.cc')
-rw-r--r--test/core/http/httpscli_test.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/core/http/httpscli_test.cc b/test/core/http/httpscli_test.cc
index a38f306ef3..b8f2e438a4 100644
--- a/test/core/http/httpscli_test.cc
+++ b/test/core/http/httpscli_test.cc
@@ -49,6 +49,7 @@ static void on_finish(void* arg, grpc_error* error) {
"<body><p>This is a test</p></body></html>";
grpc_http_response* response = static_cast<grpc_http_response*>(arg);
GPR_ASSERT(response);
+ gpr_log(GPR_INFO, "response status %d", response->status);
GPR_ASSERT(response->status == 200);
GPR_ASSERT(response->body_length == strlen(expect));
GPR_ASSERT(0 == memcmp(expect, response->body, response->body_length));