aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-06-07 17:25:44 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2018-06-07 17:25:44 -0700
commit7e7edc95b348b30b508cc0da9b09dc6495ce62ef (patch)
tree69d60ccaec04e04de3970cc12b0570a7f5b7d13b /test/core/end2end
parent70f7558a18fd92320813b6ba4107b94c83cc7b0b (diff)
reviewer feedback:
Diffstat (limited to 'test/core/end2end')
-rw-r--r--test/core/end2end/tests/simple_request.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/end2end/tests/simple_request.cc b/test/core/end2end/tests/simple_request.cc
index d24f7bc620..16fa490608 100644
--- a/test/core/end2end/tests/simple_request.cc
+++ b/test/core/end2end/tests/simple_request.cc
@@ -259,7 +259,7 @@ static void test_invoke_simple_request(grpc_end2end_test_config config) {
// ensures that core properly tracked the one call that occurred in this
// simple end2end test.
grpc_core::channelz::Channel* channelz_channel =
- grpc_channel_get_channelz_channel_node(f.client);
+ grpc_channel_get_channelz_node(f.client);
char* json = channelz_channel->RenderJSON();
GPR_ASSERT(nullptr != strstr(json, "\"callsStarted\":\"1\""));
GPR_ASSERT(nullptr != strstr(json, "\"callsFailed\":\"1\""));
@@ -282,7 +282,7 @@ static void test_invoke_10_simple_requests(grpc_end2end_test_config config) {
// The following is a quick sanity check on channelz functionality. It
// ensures that core properly tracked the ten calls that occurred.
grpc_core::channelz::Channel* channelz_channel =
- grpc_channel_get_channelz_channel_node(f.client);
+ grpc_channel_get_channelz_node(f.client);
char* json = channelz_channel->RenderJSON();
GPR_ASSERT(nullptr != strstr(json, "\"callsStarted\":\"10\""));
GPR_ASSERT(nullptr != strstr(json, "\"callsFailed\":\"10\""));