diff options
author | Craig Tiller <ctiller@google.com> | 2015-08-27 21:04:56 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-08-27 21:04:56 -0700 |
commit | 89d56103eb9de65e148f1d839a686e591763d73e (patch) | |
tree | 79b02327d46c9e34afcace37c222e07cdbd83cc9 /test/cpp/end2end/shutdown_test.cc | |
parent | ee8d6a381adf3eaedf0c5d92aca7bd5b4b645de3 (diff) | |
parent | 730055d9628ca6d27e46d7c6716148a8d93bf95d (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.cc | 2 |
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_)); } |