Skip to content

Commit

Permalink
more fixes for davical
Browse files Browse the repository at this point in the history
  • Loading branch information
tobixen committed Jan 26, 2023
1 parent f67f616 commit b6111fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_caldav.py
Original file line number Diff line number Diff line change
Expand Up @@ -1687,9 +1687,9 @@ def testTodoCompletion(self):
def testTodoRecurringCompleteSafe(self):
self.skip_on_compatibility_flag("read_only")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
t6 = c.save_todo(todo6)
t6 = c.save_todo(todo6, status='NEEDS-ACTION')
if not self.check_compatibility_flag("rrule_takes_no_count"):
t8 = c.save_todo(todo8)
t8 = c.save_todo(todo8, status='NEEDS-ACTION')
if not self.check_compatibility_flag("rrule_takes_no_count"):
assert len(c.todos()) == 2
else:
Expand All @@ -1710,9 +1710,9 @@ def testTodoRecurringCompleteSafe(self):
def testTodoRecurringCompleteThisandfuture(self):
self.skip_on_compatibility_flag("read_only")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
t6 = c.save_todo(todo6)
t6 = c.save_todo(todo6, status='NEEDS-ACTION')
if not self.check_compatibility_flag("rrule_takes_no_count"):
t8 = c.save_todo(todo8)
t8 = c.save_todo(todo8, status='NEEDS-ACTION')
if not self.check_compatibility_flag("rrule_takes_no_count"):
assert len(c.todos()) == 2
else:
Expand Down

0 comments on commit b6111fe

Please sign in to comment.