diff options
Diffstat (limited to 'testing/tests/couch')
| -rw-r--r-- | testing/tests/couch/test_atomicity.py | 3 | ||||
| -rw-r--r-- | testing/tests/couch/test_backend.py | 3 | 
2 files changed, 2 insertions, 4 deletions
diff --git a/testing/tests/couch/test_atomicity.py b/testing/tests/couch/test_atomicity.py index aec9c6cf..3badfb19 100644 --- a/testing/tests/couch/test_atomicity.py +++ b/testing/tests/couch/test_atomicity.py @@ -90,8 +90,7 @@ class CouchAtomicityTestCase(CouchDBTestCase, TestCaseWithServer):          self.db = CouchDatabase.open_database(              urljoin(self.couch_url, 'user-' + self.user),              create=True, -            replica_uid='replica', -            ensure_ddocs=True) +            replica_uid='replica')          self.tempdir = tempfile.mkdtemp(prefix="leap_tests-")          self.startTwistedServer() diff --git a/testing/tests/couch/test_backend.py b/testing/tests/couch/test_backend.py index f178e8a5..c399338e 100644 --- a/testing/tests/couch/test_backend.py +++ b/testing/tests/couch/test_backend.py @@ -43,8 +43,7 @@ class TestCouchBackendImpl(CouchDBTestCase):                  'http://localhost:' + str(self.couch_port),                  ('test-%s' % uuid4().hex)              ), -            create=True, -            ensure_ddocs=True) +            create=True)          doc_id1 = db._allocate_doc_id()          self.assertTrue(doc_id1.startswith('D-'))          self.assertEqual(34, len(doc_id1))  | 
