From 9450596bc18be78e6a7bfa1dc8952a7e5896824c Mon Sep 17 00:00:00 2001 From: Karthik Ravi Shankar Date: Tue, 8 Sep 2020 16:07:46 -0700 Subject: [PATCH] Fix end2end tests --- include/grpcpp/test/mock_stream.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/include/grpcpp/test/mock_stream.h b/include/grpcpp/test/mock_stream.h index 55e76f6f0a2..e33595d7096 100644 --- a/include/grpcpp/test/mock_stream.h +++ b/include/grpcpp/test/mock_stream.h @@ -31,7 +31,7 @@ namespace grpc { namespace testing { template -class MockClientReader : public ::grpc_impl::ClientReaderInterface { +class MockClientReader : public ::grpc::ClientReaderInterface { public: MockClientReader() = default; @@ -47,7 +47,7 @@ class MockClientReader : public ::grpc_impl::ClientReaderInterface { }; template -class MockClientWriter : public ::grpc_impl::ClientWriterInterface { +class MockClientWriter : public ::grpc::ClientWriterInterface { public: MockClientWriter() = default; @@ -63,7 +63,7 @@ class MockClientWriter : public ::grpc_impl::ClientWriterInterface { template class MockClientReaderWriter - : public ::grpc_impl::ClientReaderWriterInterface { + : public ::grpc::ClientReaderWriterInterface { public: MockClientReaderWriter() = default; @@ -86,7 +86,7 @@ class MockClientReaderWriter template class MockClientAsyncResponseReader - : public ::grpc_impl::ClientAsyncResponseReaderInterface { + : public ::grpc::ClientAsyncResponseReaderInterface { public: MockClientAsyncResponseReader() = default; @@ -108,8 +108,7 @@ class MockClientAsyncReader : public ClientAsyncReaderInterface { }; template -class MockClientAsyncWriter - : public ::grpc_impl::ClientAsyncWriterInterface { +class MockClientAsyncWriter : public ::grpc::ClientAsyncWriterInterface { public: MockClientAsyncWriter() = default;