diff options
author | Nathan Herring <nherring@google.com> | 2018-07-21 08:21:18 +0200 |
---|---|---|
committer | Nathan Herring <nherring@google.com> | 2018-07-21 08:21:18 +0200 |
commit | 0fee91e002dfb6a9f255cf0e78666e81ea73ca5e (patch) | |
tree | 137da21729c469b5815b462cad1a82f74dc76837 /test | |
parent | 6f1604b1eb873f71d72c93a483a9aca56a9f0418 (diff) |
More clang format
Diffstat (limited to 'test')
-rw-r--r-- | test/cpp/util/cli_credentials.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/util/cli_credentials.cc b/test/cpp/util/cli_credentials.cc index 68eb0b17ce..d14dc18f16 100644 --- a/test/cpp/util/cli_credentials.cc +++ b/test/cpp/util/cli_credentials.cc @@ -67,8 +67,8 @@ const grpc::string CliCredentials::GetCredentialUsage() const { } const grpc::string CliCredentials::GetSslTargetNameOverride() const { - bool use_tls = FLAGS_enable_ssl || - (FLAGS_access_token.empty() && FLAGS_use_auth); + bool use_tls = + FLAGS_enable_ssl || (FLAGS_access_token.empty() && FLAGS_use_auth); return use_tls ? FLAGS_ssl_target : ""; } |