summaryrefslogtreecommitdiff
path: root/testing/tests/couch/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tests/couch/common.py')
-rw-r--r--testing/tests/couch/common.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/testing/tests/couch/common.py b/testing/tests/couch/common.py
index 48d30168..84790059 100644
--- a/testing/tests/couch/common.py
+++ b/testing/tests/couch/common.py
@@ -17,8 +17,7 @@ def make_couch_database_for_test(test, replica_uid):
db = couch.CouchDatabase.open_database(
urljoin(test.couch_url, dbname),
create=True,
- replica_uid=replica_uid or 'test',
- ensure_ddocs=True)
+ replica_uid=replica_uid or 'test')
test.addCleanup(test.delete_db, dbname)
return db