summaryrefslogtreecommitdiff
path: root/testing/test_soledad/util.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2016-09-22 03:08:20 -0400
committerdrebs <drebs@leap.se>2016-12-12 09:11:59 -0200
commit69958161af00958b1d92ab6153a591aa89199e35 (patch)
treeb43f3724dfe0915d462484050d21ea7d2995c75e /testing/test_soledad/util.py
parente7bf2bcf974b27d1a52f08e45ad35635226ffa92 (diff)
[refactor] remove lingering refs to syncdb
Diffstat (limited to 'testing/test_soledad/util.py')
-rw-r--r--testing/test_soledad/util.py7
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