aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util/cli_call_test.cc
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-06-16 13:19:07 -0700
committerGravatar Yang Gao <yangg@google.com>2015-06-16 13:19:07 -0700
commit763afe1fd66e3a57c4484bb0f1f9930b7bd68ea2 (patch)
tree2c457ddd98168fd47026fc02c181be672fb49eac /test/cpp/util/cli_call_test.cc
parent102eccb63238f2b40e89d2ec1ed93a7771a82798 (diff)
parent32f020ae2a4c01eba236b3a93251ef9c18f606ec (diff)
merge with upstream
Diffstat (limited to 'test/cpp/util/cli_call_test.cc')
-rw-r--r--test/cpp/util/cli_call_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/util/cli_call_test.cc b/test/cpp/util/cli_call_test.cc
index fb6e926367..ac7a531f52 100644
--- a/test/cpp/util/cli_call_test.cc
+++ b/test/cpp/util/cli_call_test.cc
@@ -117,7 +117,7 @@ TEST_F(CliCallTest, SimpleRpc) {
context.AddMetadata("key1", "val1");
Status s = stub_->Echo(&context, request, &response);
EXPECT_EQ(response.message(), request.message());
- EXPECT_TRUE(s.IsOk());
+ EXPECT_TRUE(s.ok());
const grpc::string kMethod("/grpc.cpp.test.util.TestService/Echo");
grpc::string request_bin, response_bin, expected_response_bin;