diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2016-08-17 23:07:04 -0300 |
---|---|---|
committer | Victor Shyba <victor.shyba@gmail.com> | 2016-08-17 23:07:04 -0300 |
commit | e8747096045933754d3f8ac2608cce844f6b0fee (patch) | |
tree | c64d8545d3971bb7efafeed1a1293b559087daad /testing/tests/couch/common.py | |
parent | dc0bae8b6025a060297b55520674cd7238f0186b (diff) |
[tests] Adapt tests for ensure_ddocs death
Diffstat (limited to 'testing/tests/couch/common.py')
-rw-r--r-- | testing/tests/couch/common.py | 3 |
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 |