Skip to content

Commit

Permalink
GH-793 - Fixing assertion message in HourHasPassed.
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiagoBfim authored and odrotbohm committed Aug 30, 2024
1 parent d4fc976 commit 86eae79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class HourHasPassed implements DomainEvent {
*/
private HourHasPassed(LocalDateTime time) {

Assert.notNull(time, "YearMonth must not be null!");
Assert.notNull(time, "LocalDateTime must not be null!");

this.time = time;
}
Expand Down

0 comments on commit 86eae79

Please sign in to comment.