summaryrefslogtreecommitdiff
path: root/testing/tests/sync
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2016-07-23 17:11:53 +0200
committerdrebs <drebs@leap.se>2016-08-01 21:09:02 -0300
commitc7b464077215425759ab402fb2314f4e8f9acd7e (patch)
treeac727c97e4341e9cabe83183684363b2cdc026d5 /testing/tests/sync
parentc3e0f52080041e2a01cfa483efe73f8503a10f31 (diff)
[test] remove traces of design docs from couch tests
Diffstat (limited to 'testing/tests/sync')
-rw-r--r--testing/tests/sync/test_sync.py3
-rw-r--r--testing/tests/sync/test_sync_mutex.py3
2 files changed, 2 insertions, 4 deletions
diff --git a/testing/tests/sync/test_sync.py b/testing/tests/sync/test_sync.py
index 095884ce..5540b7cb 100644
--- a/testing/tests/sync/test_sync.py
+++ b/testing/tests/sync/test_sync.py
@@ -101,8 +101,7 @@ class InterruptableSyncTestCase(
# ensure remote db exists before syncing
db = couch.CouchDatabase.open_database(
urljoin(self.couch_url, 'user-user-uuid'),
- create=True,
- ensure_ddocs=True)
+ create=True)
# create interruptor thread
t = _SyncInterruptor(sol, db)
diff --git a/testing/tests/sync/test_sync_mutex.py b/testing/tests/sync/test_sync_mutex.py
index 787cfee8..261c6485 100644
--- a/testing/tests/sync/test_sync_mutex.py
+++ b/testing/tests/sync/test_sync_mutex.py
@@ -105,8 +105,7 @@ class TestSyncMutex(
# ensure remote db exists before syncing
db = CouchDatabase.open_database(
urljoin(self.couch_url, 'user-' + self.user),
- create=True,
- ensure_ddocs=True)
+ create=True)
sol = self._soledad_instance(
user=self.user, server_url=self.getURL())