Skip to content

Commit e3cb397

Browse files
committed
Fix date/time format
1 parent ebc47e8 commit e3cb397

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fixtures/azure-fixture/src/main/java/fixture/azure/AzureHttpHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ public void handle(final HttpExchange exchange) throws IOException {
316316
RequestId:%s
317317
Time:%s</Message></Error>""",
318318
requestId,
319-
DateTimeFormatter.ISO_DATE_TIME.format(ZonedDateTime.now(ZoneId.of("UTC")))
319+
DateTimeFormatter.ISO_OFFSET_DATE_TIME.format(ZonedDateTime.now(ZoneId.of("UTC")))
320320
);
321321
final String notFoundPart = Strings.format("""
322322
--%s

0 commit comments

Comments
 (0)