Skip to content

Commit

Permalink
Corrected HabitTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Kalinowski authored and iSoron committed Feb 9, 2025
1 parent 303020a commit 2296a49
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ class HabitTest : BaseUnitTest() {
assertFalse(h.isCompletedToday())
h.originalEntries.add(Entry(getToday(), 100000))
h.recompute()
assertTrue(h.isCompletedToday())
assertFalse(h.isCompletedToday())
h.originalEntries.add(Entry(getToday(), 50000))
h.recompute()
assertTrue(h.isCompletedToday())
assertFalse(h.isCompletedToday())
}

@Test
Expand Down

0 comments on commit 2296a49

Please sign in to comment.