aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end/shutdown_test.cc
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2015-08-20 13:55:29 -0700
committerGravatar yang-g <yangg@google.com>2015-08-20 13:55:29 -0700
commitd392fa04c5866387c981f4cd83392d1a2e3da7a8 (patch)
tree22300f96802dda1b76d949147ced81c450d37d97 /test/cpp/end2end/shutdown_test.cc
parentdbe7104305e93c5947b733a23dd5ad095cbc815f (diff)
fix shutdown_test
Diffstat (limited to 'test/cpp/end2end/shutdown_test.cc')
-rw-r--r--test/cpp/end2end/shutdown_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/end2end/shutdown_test.cc b/test/cpp/end2end/shutdown_test.cc
index fccbb13030..dc5fb5af9b 100644
--- a/test/cpp/end2end/shutdown_test.cc
+++ b/test/cpp/end2end/shutdown_test.cc
@@ -39,7 +39,7 @@
#include "test/cpp/util/echo.grpc.pb.h"
#include "src/core/support/env.h"
#include <grpc++/channel_arguments.h>
-#include <grpc++/channel_interface.h>
+#include <grpc++/channel.h>
#include <grpc++/client_context.h>
#include <grpc++/create_channel.h>
#include <grpc++/credentials.h>
@@ -118,7 +118,7 @@ class ShutdownTest : public ::testing::Test {
}
protected:
- std::shared_ptr<ChannelInterface> channel_;
+ std::shared_ptr<Channel> channel_;
std::unique_ptr<grpc::cpp::test::util::TestService::Stub> stub_;
std::unique_ptr<Server> server_;
bool shutdown_;