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/tests/sync/test_sqlcipher_sync.py | |
parent | b6720244bf2023b5d7b35bbccf1274aa363bc866 (diff) |
[refactor] remove lingering refs to syncdb
Diffstat (limited to 'testing/tests/sync/test_sqlcipher_sync.py')
-rw-r--r-- | testing/tests/sync/test_sqlcipher_sync.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/testing/tests/sync/test_sqlcipher_sync.py b/testing/tests/sync/test_sqlcipher_sync.py index 2528600d..c3cd8444 100644 --- a/testing/tests/sync/test_sqlcipher_sync.py +++ b/testing/tests/sync/test_sqlcipher_sync.py @@ -709,13 +709,9 @@ def make_local_db_and_soledad_target( test.startTwistedServer() replica_uid = os.path.basename(path) db = test.request_state._create_database(replica_uid) - sync_db = test._soledad._sync_db - sync_enc_pool = test._soledad._sync_enc_pool st = soledad_sync_target( test, db._dbname, - source_replica_uid=source_replica_uid, - sync_db=sync_db, - sync_enc_pool=sync_enc_pool) + source_replica_uid=source_replica_uid) return db, st target_scenarios = [ |