Skip to content

Commit b8abfb8

Browse files
izeyesnicoll
authored andcommitted
Remove MavenBuildOutputTimestampTests.shouldParseIso8601WithSeconds()
See gh-43625
1 parent 8fbd14b commit b8abfb8

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/test/java/org/springframework/boot/maven/MavenBuildOutputTimestampTests.java

-5
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ void shouldParseIso8601WithMilliseconds() {
5656
assertThat(parse("2011-12-03T10:15:30.123Z")).isEqualTo(Instant.parse("2011-12-03T10:15:30.123Z"));
5757
}
5858

59-
@Test
60-
void shouldParseIso8601WithSeconds() {
61-
assertThat(parse("2011-12-03T10:15:30Z")).isEqualTo(Instant.parse("2011-12-03T10:15:30.000Z"));
62-
}
63-
6459
@Test
6560
void shouldFailIfIso8601BeforeMin() {
6661
assertThatIllegalArgumentException().isThrownBy(() -> parse("1970-01-01T00:00:00Z"))

0 commit comments

Comments
 (0)