diff options
-rw-r--r-- | common/src/leap/soledad/common/tests/test_sync_target.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/common/src/leap/soledad/common/tests/test_sync_target.py b/common/src/leap/soledad/common/tests/test_sync_target.py index 21ead889..1fd29b3e 100644 --- a/common/src/leap/soledad/common/tests/test_sync_target.py +++ b/common/src/leap/soledad/common/tests/test_sync_target.py @@ -51,13 +51,12 @@ from leap.soledad.common.tests.util import ADDRESS from leap.soledad.common.tests.u1db_tests import test_remote_sync_target from leap.soledad.common.tests.u1db_tests import test_sync - # ----------------------------------------------------------------------------- # The following tests come from `u1db.tests.test_remote_sync_target`. # ----------------------------------------------------------------------------- class TestSoledadParseReceivedDocResponse( - test_remote_sync_target.TestParsingSyncStream, + tests.TestCase, BaseSoledadTest): """ @@ -66,7 +65,7 @@ class TestSoledadParseReceivedDocResponse( """ def setUp(self): - super(test_remote_sync_target.TestParsingSyncStream, self).setUp() + super(tests.TestCase, self).setUp() creds = {'token': { 'uuid': 'user-uuid', 'token': 'auth-token', |