Skip to content

Commit 1e7f404

Browse files
committed
chore: Fix lint issues
1 parent 902b6ce commit 1e7f404

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

oauth2_http/javatests/com/google/auth/oauth2/MockExternalAccountCredentialsTransport.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,9 @@ public LowLevelHttpResponse execute() throws IOException {
200200
OAuth2Utils.JSON_FACTORY
201201
.createJsonParser(getContentAsString())
202202
.parseAndClose(GenericJson.class);
203-
assertEquals(OAuth2Utils.CLOUD_PLATFORM_SCOPE, ((ArrayList<String>) query.get("scope")).get(0));
203+
assertEquals(
204+
OAuth2Utils.CLOUD_PLATFORM_SCOPE,
205+
((ArrayList<String>) query.get("scope")).get(0));
204206
assertEquals(1, getHeaders().get("authorization").size());
205207
assertTrue(getHeaders().containsKey("authorization"));
206208
assertNotNull(getHeaders().get("authorization").get(0));

0 commit comments

Comments
 (0)