Skip to content

Commit c3b3f3c

Browse files
committed
lint
1 parent d1fee05 commit c3b3f3c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google/cloud/internal/oauth2_impersonate_service_account_credentials_test.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ TEST(ParseImpersonatedServiceAccountCredentials, MalformedScopes) {
8888
auto json = nlohmann::json::parse(kFullValidConfig);
8989
json["scopes"] = "not-an-array";
9090
auto actual = ParseImpersonatedServiceAccountCredentials(json.dump(), "");
91-
EXPECT_THAT(actual, StatusIs(StatusCode::kInvalidArgument,
92-
AllOf(HasSubstr("Malformed"),
93-
HasSubstr("scopes"))));
91+
EXPECT_THAT(actual,
92+
StatusIs(StatusCode::kInvalidArgument,
93+
AllOf(HasSubstr("Malformed"), HasSubstr("scopes"))));
9494
}
9595

9696
TEST(ParseImpersonatedServiceAccountCredentials, Success) {

0 commit comments

Comments
 (0)