diff --git a/spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/build/BuildRequestTests.java b/spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/build/BuildRequestTests.java index 1ded1fa526..e74302a163 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/build/BuildRequestTests.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/build/BuildRequestTests.java @@ -53,6 +53,8 @@ import static org.assertj.core.api.Assertions.entry; */ class BuildRequestTests { + private static final ZoneId UTC = ZoneId.of("UTC"); + @TempDir File tempDir; @@ -271,15 +273,15 @@ class BuildRequestTests { @Test void withCreatedDateNowSetsCreatedDate() throws Exception { - OffsetDateTime now = OffsetDateTime.now(); + OffsetDateTime now = OffsetDateTime.now(UTC); BuildRequest request = BuildRequest.forJarFile(writeTestJarFile("my-app-0.0.1.jar")); BuildRequest withCreatedDate = request.withCreatedDate("now"); - OffsetDateTime createdDate = OffsetDateTime.ofInstant(withCreatedDate.getCreatedDate(), ZoneId.of("UTC")); + OffsetDateTime createdDate = OffsetDateTime.ofInstant(withCreatedDate.getCreatedDate(), UTC); assertThat(createdDate.getYear()).isEqualTo(now.getYear()); assertThat(createdDate.getMonth()).isEqualTo(now.getMonth()); assertThat(createdDate.getDayOfMonth()).isEqualTo(now.getDayOfMonth()); withCreatedDate = request.withCreatedDate("NOW"); - createdDate = OffsetDateTime.ofInstant(withCreatedDate.getCreatedDate(), ZoneId.of("UTC")); + createdDate = OffsetDateTime.ofInstant(withCreatedDate.getCreatedDate(), UTC); assertThat(createdDate.getYear()).isEqualTo(now.getYear()); assertThat(createdDate.getMonth()).isEqualTo(now.getMonth()); assertThat(createdDate.getDayOfMonth()).isEqualTo(now.getDayOfMonth());