aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util/create_test_channel.cc
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-01-26 00:19:48 -0800
committerGravatar Yang Gao <yangg@google.com>2015-01-26 00:19:48 -0800
commit5fd0d29dfe92ccdb2b745dcef5293461ee09df91 (patch)
treed6641077f4b46c693e1309d4179ecbf94f3a9f06 /test/cpp/util/create_test_channel.cc
parentc38dda4b90cfe4100e46c7c6bb36b685cd6c4cb2 (diff)
run clang-format
Diffstat (limited to 'test/cpp/util/create_test_channel.cc')
-rw-r--r--test/cpp/util/create_test_channel.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/cpp/util/create_test_channel.cc b/test/cpp/util/create_test_channel.cc
index 0b1b628e5e..e512e3cc73 100644
--- a/test/cpp/util/create_test_channel.cc
+++ b/test/cpp/util/create_test_channel.cc
@@ -72,7 +72,8 @@ std::shared_ptr<ChannelInterface> CreateTestChannel(
const grpc::string& connect_to =
server.empty() ? override_hostname : server;
if (creds.get()) {
- channel_creds = CredentialsFactory::ComposeCredentials(creds, channel_creds);
+ channel_creds =
+ CredentialsFactory::ComposeCredentials(creds, channel_creds);
}
return CreateChannel(connect_to, channel_creds, channel_args);
} else {
@@ -83,7 +84,8 @@ std::shared_ptr<ChannelInterface> CreateTestChannel(
std::shared_ptr<ChannelInterface> CreateTestChannel(
const grpc::string& server, const grpc::string& override_hostname,
bool enable_ssl, bool use_prod_roots) {
- return CreateTestChannel(server, override_hostname, enable_ssl, use_prod_roots, std::unique_ptr<Credentials>());
+ return CreateTestChannel(server, override_hostname, enable_ssl,
+ use_prod_roots, std::unique_ptr<Credentials>());
}
// Shortcut for end2end and interop tests.