Skip to content

Commit ed554c5

Browse files
committed
Merge pull request #43625 from izeye
* pr/43625: Remove MavenBuildOutputTimestampTests.shouldParseIso8601WithSeconds() Closes gh-43625
2 parents 8fbd14b + b8abfb8 commit ed554c5

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)