Skip to content

Commit

Permalink
fix: Update event stats test
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPalafox committed Jan 5, 2024
1 parent bd56da8 commit c4d9c49
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void createEventStats() {

assertNotNull(eventStatsEntityList);
assertEquals(1, eventStatsEntityList.size());
assertEquals(20, java.util.Optional.ofNullable(eventStatsEntityList.get(0).getCount()));
assertEquals(Integer.valueOf(20), eventStatsEntityList.get(0).getCount());
}

private void createEvents() {
Expand Down

0 comments on commit c4d9c49

Please sign in to comment.