diff options
author | Kali Kaneko <kali@leap.se> | 2016-09-22 03:08:20 -0400 |
---|---|---|
committer | Victor Shyba <victor1984@riseup.net> | 2016-11-18 15:55:52 -0300 |
commit | 624e05d56f6e1414a563bd146e468f08cf1be1ec (patch) | |
tree | 062a9e207880a3a4cd290bd9bdaa1eba5347e383 /testing/test_soledad | |
parent | b6720244bf2023b5d7b35bbccf1274aa363bc866 (diff) |
[refactor] remove lingering refs to syncdb
Diffstat (limited to 'testing/test_soledad')
-rw-r--r-- | testing/test_soledad/util.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/testing/test_soledad/util.py b/testing/test_soledad/util.py index bde0b1b7..b1965aa6 100644 --- a/testing/test_soledad/util.py +++ b/testing/test_soledad/util.py @@ -190,8 +190,7 @@ class MockedSharedDBTest(object): def soledad_sync_target( - test, path, source_replica_uid=uuid4().hex, - sync_db=None, sync_enc_pool=None): + test, path, source_replica_uid=uuid4().hex): creds = {'token': { 'uuid': 'user-uuid', 'token': 'auth-token', @@ -201,9 +200,7 @@ def soledad_sync_target( source_replica_uid, creds, test._soledad._crypto, - None, # cert_file - sync_db=sync_db, - sync_enc_pool=sync_enc_pool) + None) # cert_file # redefine the base leap test class so it inherits from twisted trial's |