diff options
author | Yang Gao <yangg@google.com> | 2015-06-16 22:07:58 -0700 |
---|---|---|
committer | Yang Gao <yangg@google.com> | 2015-06-16 22:07:58 -0700 |
commit | 45bd28e0d3c7d7272333ca2531f1e53467037ecd (patch) | |
tree | 1b652374b9b8f5cbe9d5ef4245b53f934d939ef3 /test/cpp/util | |
parent | b6804366565e833840499b767987778946f70bd2 (diff) |
One more thing...
Diffstat (limited to 'test/cpp/util')
-rw-r--r-- | test/cpp/util/cli_call_test.cc | 2 |
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 ac7a531f52..6cf86ea89b 100644 --- a/test/cpp/util/cli_call_test.cc +++ b/test/cpp/util/cli_call_test.cc @@ -129,7 +129,7 @@ TEST_F(CliCallTest, SimpleRpc) { Status s2 = CliCall::Call(channel_, kMethod, request_bin, &response_bin, client_metadata, &server_initial_metadata, &server_trailing_metadata); - EXPECT_TRUE(s2.IsOk()); + EXPECT_TRUE(s2.ok()); EXPECT_EQ(expected_response_bin, response_bin); EXPECT_EQ(context.GetServerInitialMetadata(), server_initial_metadata); |