Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Knerio committed Jun 9, 2024
1 parent 9f88392 commit 478cd4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ subprojects {
apply(plugin = "maven-publish")

group = "de.derioo.javautils"
version = "2.4.0"
version = "2.4.1"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class DateUtilityTest {
public void testDefault() throws ParseException {
SimpleDateFormat longFormat = new SimpleDateFormat("dd.MM.yyyy, HH:mm", Locale.GERMAN);
Date date = new Date();
assertThat(parseDefaultTime(longFormat.format(date))).isEqualTo(date);
assertThat(parseDefaultTime(longFormat.format(date))).isCloseTo(date, 60000);
}

@Test
Expand Down

0 comments on commit 478cd4d

Please sign in to comment.