Skip to content

Commit

Permalink
Attempt to get CI tests to succeed by replacing getRepeating with isR…
Browse files Browse the repository at this point in the history
…epeating in FinanceEventsTest
  • Loading branch information
rhit-norflwe authored Dec 7, 2024
1 parent a944f53 commit e3944e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void testGetSetEvent_time() {
@Test
public void testGetSetRepeating() {
financeEvents.setRepeating(true);
assertEquals(true, financeEvents.getRepeating());
assertEquals(true, financeEvents.isRepeating());
}

@Test
Expand All @@ -67,4 +67,4 @@ public void testGetSetMoney() {
financeEvents.setMoney(9.99);
assertEquals(9.99, financeEvents.getMoney());
}
}
}

0 comments on commit e3944e0

Please sign in to comment.