Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
tobixen committed Oct 20, 2024
1 parent c35e9d6 commit 7e279a4
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions tests/test_caldav.py
Original file line number Diff line number Diff line change
Expand Up @@ -2519,14 +2519,18 @@ def testRecurringDateWithExceptionSearch(self):

assert len(r) == 2

assert 'RRULE' not in r[0].data
assert 'RRULE' not in r[1].data
assert "RRULE" not in r[0].data
assert "RRULE" not in r[1].data

assert isinstance(r[0].icalendar_component['RECURRENCE-ID'], icalendar.vDDDTypes)
assert r[0].icalendar_component['RECURRENCE-ID'].dt == date(2024, 4, 11)
assert isinstance(
r[0].icalendar_component["RECURRENCE-ID"], icalendar.vDDDTypes
)
assert r[0].icalendar_component["RECURRENCE-ID"].dt == date(2024, 4, 11)

assert isinstance(r[1].icalendar_component['RECURRENCE-ID'], icalendar.vDDDTypes)
assert r[1].icalendar_component['RECURRENCE-ID'].dt == date(2024, 4, 25)
assert isinstance(
r[1].icalendar_component["RECURRENCE-ID"], icalendar.vDDDTypes
)
assert r[1].icalendar_component["RECURRENCE-ID"].dt == date(2024, 4, 25)

def testOffsetURL(self):
"""
Expand Down

0 comments on commit 7e279a4

Please sign in to comment.