1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00

Cosmetics

This commit is contained in:
Unrud 2021-12-09 19:15:23 +01:00
parent 6ff0be84e4
commit 505220ce25
2 changed files with 2 additions and 2 deletions

View file

@ -1772,7 +1772,7 @@ class TestCustomStorageSystem(BaseFileSystemTest):
# include tests related to sync token
s: str = ""
for s in dir(BaseRequestsMixIn):
if s.startswith("test_") and ("_sync_" in s or s.endswith("_sync")):
if s.startswith("test_") and "sync" in s.split("_"):
locals()[s] = getattr(BaseRequestsMixIn, s)
del s