Fix acceptance tests

This commit is contained in:
2017-07-22 09:28:30 -04:00
parent 2f7509b94e
commit 882ddba324
4 changed files with 13 additions and 8 deletions

View File

@@ -147,6 +147,7 @@ public abstract class HabitList implements Iterable<Habit>
List<Habit> copy = new LinkedList<>();
for (Habit h : this) copy.add(h);
for (Habit h : copy) remove(h);
observable.notifyListeners();
}
/**