From 33b80f16ec0c6c8792d2e1f301ac2416c6cd6312 Mon Sep 17 00:00:00 2001 From: bojeil-google Date: Mon, 8 Feb 2021 15:42:40 -0800 Subject: [PATCH] Applies clang_format_code.sh to address sanity check tests. --- test/cpp/client/credentials_test.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/cpp/client/credentials_test.cc b/test/cpp/client/credentials_test.cc index a061eb496e1..122ba929274 100644 --- a/test/cpp/client/credentials_test.cc +++ b/test/cpp/client/credentials_test.cc @@ -110,8 +110,8 @@ TEST(CredentialsTest, ExternalAccountCredentials) { "\"access_token\"}},\"quota_project_id\":\"quota_" "project_id\",\"client_id\":\"client_id\",\"client_secret\":\"client_" "secret\"}"); - auto url_creds = grpc::ExternalAccountCredentials( - url_options_string, {"scope1", "scope2"}); + auto url_creds = grpc::ExternalAccountCredentials(url_options_string, + {"scope1", "scope2"}); EXPECT_TRUE(url_creds != nullptr); // file credentials std::string file_options_string( @@ -123,8 +123,8 @@ TEST(CredentialsTest, ExternalAccountCredentials) { "\"quota_project_id\":\"quota_" "project_id\",\"client_id\":\"client_id\",\"client_secret\":\"client_" "secret\"}"); - auto file_creds = grpc::ExternalAccountCredentials( - file_options_string, {"scope1", "scope2"}); + auto file_creds = grpc::ExternalAccountCredentials(file_options_string, + {"scope1", "scope2"}); EXPECT_TRUE(file_creds != nullptr); // aws credentials std::string aws_options_string( @@ -139,8 +139,8 @@ TEST(CredentialsTest, ExternalAccountCredentials) { "\"quota_project_id\":\"quota_" "project_id\",\"client_id\":\"client_id\",\"client_secret\":\"client_" "secret\"}"); - auto aws_creds = grpc::ExternalAccountCredentials( - aws_options_string, {"scope1", "scope2"}); + auto aws_creds = grpc::ExternalAccountCredentials(aws_options_string, + {"scope1", "scope2"}); EXPECT_TRUE(aws_creds != nullptr); }