Skip to content

Commit

Permalink
bugfix - exact match vs case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
tobixen committed Nov 30, 2024
1 parent 347ff5a commit 2f481d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_server_compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def _check_simple_events(self, obj1, obj2):
## we should not be here
_debugger()
pass
events = cal.search(summary="test event", event=True)
events = cal.search(summary="Test event", event=True)
if len(events) == 2:
self.set_flag("text_search_is_exact_match_only", False)
elif len(events) == 0:
Expand Down

0 comments on commit 2f481d6

Please sign in to comment.