diff --git a/radicale/tests/test_auth.py b/radicale/tests/test_auth.py index dc0fadd..422f98c 100644 --- a/radicale/tests/test_auth.py +++ b/radicale/tests/test_auth.py @@ -44,7 +44,7 @@ class TestBaseAuthRequests(BaseTest): # Disable syncing to disk for better performance self.configuration.set("storage", "filesystem_fsync", "False") # Required on Windows, doesn't matter on Unix - self.configuration.set("storage", "close_lock_file", "True") + self.configuration.set("storage", "filesystem_close_lock_file", "True") # Set incorrect authentication delay to a very low value self.configuration.set("auth", "delay", "0.002") diff --git a/radicale/tests/test_base.py b/radicale/tests/test_base.py index b8ceb84..9ace4bf 100644 --- a/radicale/tests/test_base.py +++ b/radicale/tests/test_base.py @@ -883,7 +883,7 @@ class BaseFileSystemTest(BaseTest): # Disable syncing to disk for better performance self.configuration.set("storage", "filesystem_fsync", "False") # Required on Windows, doesn't matter on Unix - self.configuration.set("storage", "close_lock_file", "True") + self.configuration.set("storage", "filesystem_close_lock_file", "True") self.application = Application(self.configuration, self.logger) def teardown(self): diff --git a/radicale/tests/test_rights.py b/radicale/tests/test_rights.py index 4e80c26..0bdaf57 100644 --- a/radicale/tests/test_rights.py +++ b/radicale/tests/test_rights.py @@ -38,7 +38,7 @@ class TestBaseAuthRequests(BaseTest): # Disable syncing to disk for better performance self.configuration.set("storage", "filesystem_fsync", "False") # Required on Windows, doesn't matter on Unix - self.configuration.set("storage", "close_lock_file", "True") + self.configuration.set("storage", "filesystem_close_lock_file", "True") def teardown(self): shutil.rmtree(self.colpath)