aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end/shutdown_test.cc
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2015-08-27 12:29:45 -0700
committerGravatar yang-g <yangg@google.com>2015-08-27 12:29:45 -0700
commit730055d9628ca6d27e46d7c6716148a8d93bf95d (patch)
treebc24ac6a57d45f87daca66cf54a3b8f0cf61aea5 /test/cpp/end2end/shutdown_test.cc
parentdafcce980d847e3a90cb7aa31641c464bbc5809a (diff)
implementation fix
Diffstat (limited to 'test/cpp/end2end/shutdown_test.cc')
-rw-r--r--test/cpp/end2end/shutdown_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/end2end/shutdown_test.cc b/test/cpp/end2end/shutdown_test.cc
index e83f86f7ec..59fec6ad40 100644
--- a/test/cpp/end2end/shutdown_test.cc
+++ b/test/cpp/end2end/shutdown_test.cc
@@ -95,7 +95,7 @@ class ShutdownTest : public ::testing::Test {
void ResetStub() {
string target = "dns:localhost:" + to_string(port_);
- channel_ = CreateChannel(target, InsecureCredentials(), ChannelArguments());
+ channel_ = CreateChannel(target, InsecureCredentials());
stub_ = std::move(grpc::cpp::test::util::TestService::NewStub(channel_));
}