Skip to content

Commit

Permalink
GH-794 - 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 706e9c8 commit 375dd50
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 375dd50

Please sign in to comment.