diff --git a/uhabits-core/src/jvmTest/java/org/isoron/uhabits/core/models/HabitTest.kt b/uhabits-core/src/jvmTest/java/org/isoron/uhabits/core/models/HabitTest.kt index 64b498ed3..832be20fb 100644 --- a/uhabits-core/src/jvmTest/java/org/isoron/uhabits/core/models/HabitTest.kt +++ b/uhabits-core/src/jvmTest/java/org/isoron/uhabits/core/models/HabitTest.kt @@ -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