From 7e7edc95b348b30b508cc0da9b09dc6495ce62ef Mon Sep 17 00:00:00 2001 From: ncteisen Date: Thu, 7 Jun 2018 17:25:44 -0700 Subject: reviewer feedback: --- test/core/end2end/tests/simple_request.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') 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\"")); -- cgit v1.2.3