aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end/shutdown_test.cc
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-08-27 21:04:56 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-08-27 21:04:56 -0700
commit89d56103eb9de65e148f1d839a686e591763d73e (patch)
tree79b02327d46c9e34afcace37c222e07cdbd83cc9 /test/cpp/end2end/shutdown_test.cc
parentee8d6a381adf3eaedf0c5d92aca7bd5b4b645de3 (diff)
parent730055d9628ca6d27e46d7c6716148a8d93bf95d (diff)
Merge pull request #3104 from yang-g/create_channel
Create channel API change
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_));
}