diff options
Diffstat (limited to 'service/test/support')
-rw-r--r-- | service/test/support/integration/app_test_client.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/service/test/support/integration/app_test_client.py b/service/test/support/integration/app_test_client.py index d52c85c0..538cf633 100644 --- a/service/test/support/integration/app_test_client.py +++ b/service/test/support/integration/app_test_client.py @@ -429,8 +429,6 @@ def initialize_soledad(tempdir, uuid): def __call__(self): return self - Soledad._shared_db = MockSharedDB() - _soledad = Soledad( uuid, passphrase, @@ -438,8 +436,8 @@ def initialize_soledad(tempdir, uuid): local_db_path, server_url, cert_file, - defer_encryption=False, - syncable=False) + shared_db=MockSharedDB() + ) yield SoledadMailAdaptor().initialize_store(_soledad) |