Skip to content

Commit f44f62d

Browse files
1 parent 022ade5 commit f44f62d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎google-oauth-client/src/test/java/com/google/api/client/auth/openidconnect/IdTokenVerifierTest.java‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -323,14 +323,14 @@ public void testVerifyRs256TokenWithLegacyCertificateUrlFormat()
323323
private IdTokenVerifier generateTokenVerifier(long mockClockTime) {
324324
MockClock clock = new MockClock(mockClockTime);
325325
return new IdTokenVerifier.Builder()
326-
.setClock(clock)
327-
.setCertificatesLocation(SERVICE_ACCOUNT_CERT_URL)
328-
.setHttpTransportFactory(new DefaultHttpTransportFactory())
329-
.build();
326+
.setClock(clock)
327+
.setCertificatesLocation(SERVICE_ACCOUNT_CERT_URL)
328+
.setHttpTransportFactory(new DefaultHttpTransportFactory())
329+
.build();
330330
}
331331

332332
public void testVerifyServiceAccountRs256Token() throws IOException {
333-
//use newly used signature
333+
// use newly used signature
334334
IdTokenVerifier tokenVerifier = generateTokenVerifier(1665085508212L);
335335
assertTrue(tokenVerifier.verify(IdToken.parse(JSON_FACTORY, SERVICE_ACCOUNT_RS256_TOKEN)));
336336

0 commit comments

Comments
 (0)