summaryrefslogtreecommitdiff
path: root/testing/tests/couch/test_backend.py
diff options
context:
space:
mode:
authorefkin <efkin@riseup.net>2017-03-13 20:20:19 +0100
committerKali Kaneko <kali@leap.se>2017-03-17 17:52:56 +0100
commitba3fcb08eafd389bdbf0ab9c59577a25c8d8126d (patch)
tree24f41600853a07318a035c5de4fc11f8e10fdd6a /testing/tests/couch/test_backend.py
parent1034d3107b57f03d7ed2257aef39cede2f6686ef (diff)
[test] Prepare tests for python3 compatibility
Diffstat (limited to 'testing/tests/couch/test_backend.py')
-rw-r--r--testing/tests/couch/test_backend.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/tests/couch/test_backend.py b/testing/tests/couch/test_backend.py
index 4fad11cf..9dfa22ac 100644
--- a/testing/tests/couch/test_backend.py
+++ b/testing/tests/couch/test_backend.py
@@ -19,7 +19,7 @@ Test ObjectStore and Couch backend bits.
"""
from uuid import uuid4
-from urlparse import urljoin
+from six.moves.urllib.parse import urljoin
from testscenarios import TestWithScenarios
from twisted.trial import unittest
@@ -28,7 +28,7 @@ from leap.soledad.common import couch
from test_soledad.util import CouchDBTestCase
from test_soledad.u1db_tests import test_backends
-from common import COUCH_SCENARIOS
+from .common import COUCH_SCENARIOS
# -----------------------------------------------------------------------------