Skip to content

Commit

Permalink
Fix incorrect date format pattern in unit test (#1789)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcono1234 authored Oct 26, 2024
1 parent 0eaf6f2 commit 3457bf5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ private static FutureSubject assertThat(String message, CompletableFuture<?> act

static final class Loader implements AsyncCacheLoader<String, String> {
private static final DateTimeFormatter FORMATTER =
DateTimeFormatter.ofPattern("hh:MM:ss.SSS", US);
DateTimeFormatter.ofPattern("HH:mm:ss.SSS", US);

final ConcurrentMap<String, String> source;
final ConcurrentMap<String, Instant> lastLoad;
Expand Down

0 comments on commit 3457bf5

Please sign in to comment.