diff --git a/test/cpp/client/credentials_test.cc b/test/cpp/client/credentials_test.cc index 518a90a61f0..a061eb496e1 100644 --- a/test/cpp/client/credentials_test.cc +++ b/test/cpp/client/credentials_test.cc @@ -110,7 +110,7 @@ TEST(CredentialsTest, ExternalAccountCredentials) { "\"access_token\"}},\"quota_project_id\":\"quota_" "project_id\",\"client_id\":\"client_id\",\"client_secret\":\"client_" "secret\"}"); - auto url_creds = grpc::experimental::ExternalAccountCredentials( + auto url_creds = grpc::ExternalAccountCredentials( url_options_string, {"scope1", "scope2"}); EXPECT_TRUE(url_creds != nullptr); // file credentials @@ -123,7 +123,7 @@ TEST(CredentialsTest, ExternalAccountCredentials) { "\"quota_project_id\":\"quota_" "project_id\",\"client_id\":\"client_id\",\"client_secret\":\"client_" "secret\"}"); - auto file_creds = grpc::experimental::ExternalAccountCredentials( + auto file_creds = grpc::ExternalAccountCredentials( file_options_string, {"scope1", "scope2"}); EXPECT_TRUE(file_creds != nullptr); // aws credentials @@ -139,7 +139,7 @@ TEST(CredentialsTest, ExternalAccountCredentials) { "\"quota_project_id\":\"quota_" "project_id\",\"client_id\":\"client_id\",\"client_secret\":\"client_" "secret\"}"); - auto aws_creds = grpc::experimental::ExternalAccountCredentials( + auto aws_creds = grpc::ExternalAccountCredentials( aws_options_string, {"scope1", "scope2"}); EXPECT_TRUE(aws_creds != nullptr); }