We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d75d3c1 commit a35a8e7Copy full SHA for a35a8e7
1 file changed
tests/test_caldav_unit.py
@@ -2734,5 +2734,7 @@ def test_resolve_properties_unmatched_paths_production_mode(self):
2734
"""Same but with a non-empty properties dict where path does not match."""
2735
cal = self._make_calendar("/calendar/")
2736
with mock.patch.object(error, "debugmode", "PRODUCTION"):
2737
- result = cal._resolve_properties({"/other/path/": {"foo": "bar"}, "/yet/another/": {"baz": "qux"}})
+ result = cal._resolve_properties(
2738
+ {"/other/path/": {"foo": "bar"}, "/yet/another/": {"baz": "qux"}}
2739
+ )
2740
assert result == {}
0 commit comments