We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8173ee3 commit bf06e09Copy full SHA for bf06e09
2 files changed
pyproject.toml
@@ -79,7 +79,7 @@ test = [
79
"manuel",
80
"proxy.py",
81
"tzlocal",
82
- "xandikos>=0.2.12",
+ "xandikos>=0.3.4",
83
"radicale",
84
"pyfakefs",
85
"httpx",
tests/test_caldav.py
@@ -762,7 +762,7 @@ def setup_method(self):
762
763
foo = self.is_supported("rate-limit", dict)
764
if foo.get("enable"):
765
- rate_delay = foo["interval"] / foo["count"]
+ rate_delay = foo.get("interval", 0) / foo.get("count", 1)
766
self.caldav.request = _delay_decorator(self.caldav.request, t=rate_delay)
767
foo = self.is_supported("search-cache", dict)
768
if foo.get("behaviour") == "delay":
0 commit comments