Remove test_folder configuration

It's not used.
This commit is contained in:
Unrud 2016-08-03 14:34:36 +02:00
parent b71664b322
commit 0fc7f787a8
2 changed files with 0 additions and 3 deletions

View File

@ -29,5 +29,3 @@ class Collection(storage.Collection):
"""Collection stored in a folder.""" """Collection stored in a folder."""
def __init__(self, path, principal=False): def __init__(self, path, principal=False):
super().__init__(path, principal) super().__init__(path, principal)
self._filesystem_path = storage.path_to_filesystem(
self.configuration.get("storage", "test_folder"), self.path)

View File

@ -654,7 +654,6 @@ class TestCustomStorageSystem(BaseRequests, BaseTest):
super().setup() super().setup()
self.colpath = tempfile.mkdtemp() self.colpath = tempfile.mkdtemp()
self.configuration.set("storage", "filesystem_folder", self.colpath) self.configuration.set("storage", "filesystem_folder", self.colpath)
self.configuration.set("storage", "test_folder", self.colpath)
self.application = Application(self.configuration, self.logger) self.application = Application(self.configuration, self.logger)
def teardown(self): def teardown(self):