diff options
author | Kali Kaneko <kali@leap.se> | 2016-09-22 03:08:20 -0400 |
---|---|---|
committer | drebs <drebs@leap.se> | 2016-12-12 09:11:59 -0200 |
commit | 69958161af00958b1d92ab6153a591aa89199e35 (patch) | |
tree | b43f3724dfe0915d462484050d21ea7d2995c75e /testing/tests/sync/test_sqlcipher_sync.py | |
parent | e7bf2bcf974b27d1a52f08e45ad35635226ffa92 (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 = [ |