Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
tobixen committed Nov 30, 2024
1 parent 401e88e commit 347ff5a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions check_server_compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from caldav.lib.error import DAVError
from caldav.lib.error import NotFoundError
from caldav.lib.python_utilities import to_local
from caldav.objects import FreeBusy
from tests.compatibility_issues import incompatibility_description
from tests.conf import client
from tests.conf import CONNKEYS
Expand Down Expand Up @@ -345,9 +346,6 @@ def check_event(self):

foo = self._date_search(span, assert_found=False, event=True)
if len(foo) != 0:
import pdb

pdb.set_trace()
raise

span = cal.add_event(
Expand Down Expand Up @@ -376,7 +374,7 @@ def _check_freebusy(self):
assert isinstance(freebusy, FreeBusy)
assert freebusy.instance.vfreebusy
self.set_flag('no_freebusy_rfc4791', False)
except:
except Exception as e:
self.set_flag('no_freebusy_rfc4791')

def _check_simple_events(self, obj1, obj2):
Expand Down

0 comments on commit 347ff5a

Please sign in to comment.