Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
tobixen committed Nov 18, 2024
1 parent e9b3587 commit 510e296
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions check_server_compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,20 @@ def check_event(self):
yearly_time.delete()
yearly_day.delete()

def check_todo(self):
cal = self._default_calendar

try:
## Add a simplest possible todo
todo1 = cal.add_todo(
summary="This is a summary",
uid="check_todo_1",
)
except:
import pdb; pdb.set_trace()
pass


def check_all(self):
try:
self.check_principal()
Expand Down
2 changes: 1 addition & 1 deletion tests/compatibility_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
goodver = (0,2,12)
for i in range(0,2):
if xver[i]<goodver[i]:
xandikos.append('category_search_needs')
xandikos.append('category_search_yields_nothing')
break
except Exception:
pass
Expand Down

0 comments on commit 510e296

Please sign in to comment.