Use mapping protocol access instead of legacy configparser API

This commit is contained in:
flan
2017-11-06 19:33:27 +01:00
parent 354354ca72
commit 59f28faa1e
3 changed files with 16 additions and 17 deletions

View File

@@ -28,7 +28,7 @@ class SyncAppFunctionalTestBase(unittest.TestCase):
self.server_paths = helpers.server_utils.create_server_paths()
# Add a test user to the temp auth db the server will use.
self.user_manager = SqliteUserManager(self.server_paths['auth_db'],
self.user_manager = SqliteUserManager(self.server_paths['auth_db_path'],
self.server_paths['data_root'])
self.user_manager.add_user('testuser', 'testpassword')