aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-10-04 13:44:18 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2016-10-04 13:44:18 -0700
commite5b4c26ef7d1a695f8d925b1d4d481853c98f188 (patch)
tree8398ef363a3bb7ef8ecc64a1cf72f30152064785 /test
parentf042481403cd35669f5efc7aff9b42036ab7f862 (diff)
more usage of std::string
Diffstat (limited to 'test')
-rw-r--r--test/cpp/end2end/proto_server_reflection_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/end2end/proto_server_reflection_test.cc b/test/cpp/end2end/proto_server_reflection_test.cc
index efbb0e1f8e..75efd01f06 100644
--- a/test/cpp/end2end/proto_server_reflection_test.cc
+++ b/test/cpp/end2end/proto_server_reflection_test.cc
@@ -144,7 +144,7 @@ class ProtoServerReflectionTest : public ::testing::Test {
TEST_F(ProtoServerReflectionTest, CheckResponseWithLocalDescriptorPool) {
ResetStub();
- std::vector<std::string> services;
+ std::vector<grpc::string> services;
desc_db_->GetServices(&services);
// The service list has at least one service (reflection servcie).
EXPECT_TRUE(services.size() > 0);