Skip to content

Commit f367360

Browse files
1 parent 4d39fd4 commit f367360

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

‎oauth2_http/java/com/google/auth/oauth2/PluggableAuthHandler.java‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ public String retrieveTokenFromExecutable(ExecutableOptions options) throws IOEx
120120
&& executableResponse.getExpirationTime() == null) {
121121
throw new PluggableAuthException(
122122
"INVALID_EXECUTABLE_RESPONSE",
123-
"The executable response must contain the `expiration_time` field for successful responses when an " +
124-
"output_file has been specified in the configuration.");
123+
"The executable response must contain the `expiration_time` field for successful responses when an "
124+
+ "output_file has been specified in the configuration.");
125125
}
126126

127127
// The executable response includes a version. Validate that the version is compatible

‎oauth2_http/javatests/com/google/auth/oauth2/ExecutableResponseTest.java‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ void constructor_successSamlResponseMissingExpirationTimeField_notExpired() thro
112112
assertNull(response.getExpirationTime());
113113
}
114114

115-
116115
@Test
117116
void constructor_validErrorResponse() throws IOException {
118117
ExecutableResponse response = new ExecutableResponse(buildErrorResponse());

0 commit comments

Comments
 (0)