diff options
author | Yuchen Zeng <zyc@google.com> | 2016-11-15 18:50:19 -0800 |
---|---|---|
committer | Yuchen Zeng <zyc@google.com> | 2016-11-15 18:50:19 -0800 |
commit | 0377f7a6f728f105d80e3f4ce0b1b64481453899 (patch) | |
tree | 37b0a57ad2ae27ff10843509d955e325002d1740 /test | |
parent | 24e5f3756742e4f65cfefc6c88d10395f1ac92be (diff) |
Fix symbol conflict
Diffstat (limited to 'test')
-rw-r--r-- | test/cpp/util/grpc_tool_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/util/grpc_tool_test.cc b/test/cpp/util/grpc_tool_test.cc index 5ab054d04a..1ff8172306 100644 --- a/test/cpp/util/grpc_tool_test.cc +++ b/test/cpp/util/grpc_tool_test.cc @@ -112,8 +112,6 @@ size_t ArraySize(T& a) { static_cast<size_t>(!(sizeof(a) % sizeof(*(a))))); } -} // namespame - class TestServiceImpl : public ::grpc::testing::EchoTestService::Service { public: Status Echo(ServerContext* context, const EchoRequest* request, @@ -132,6 +130,8 @@ class TestServiceImpl : public ::grpc::testing::EchoTestService::Service { } }; +} // namespace + class GrpcToolTest : public ::testing::Test { protected: GrpcToolTest() {} |