Skip to content

Commit

Permalink
Remove MavenBuildOutputTimestampTests.shouldParseIso8601WithSeconds()
Browse files Browse the repository at this point in the history
  • Loading branch information
izeye authored and snicoll committed Dec 29, 2024
1 parent 8fbd14b commit b8abfb8
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,6 @@ void shouldParseIso8601WithMilliseconds() {
assertThat(parse("2011-12-03T10:15:30.123Z")).isEqualTo(Instant.parse("2011-12-03T10:15:30.123Z"));
}

@Test
void shouldParseIso8601WithSeconds() {
assertThat(parse("2011-12-03T10:15:30Z")).isEqualTo(Instant.parse("2011-12-03T10:15:30.000Z"));
}

@Test
void shouldFailIfIso8601BeforeMin() {
assertThatIllegalArgumentException().isThrownBy(() -> parse("1970-01-01T00:00:00Z"))
Expand Down

0 comments on commit b8abfb8

Please sign in to comment.