diff options
author | antialias <antialias@leap.se> | 2013-01-30 13:26:18 -0500 |
---|---|---|
committer | antialias <antialias@leap.se> | 2013-01-30 13:26:18 -0500 |
commit | e6f5027e42c8dbcde2a42cd48b9f7a54731fc10d (patch) | |
tree | 1847fc5fd2e4dac8ee8ed85f58d0433740ecd8a8 /tests/test_couch.py | |
parent | 3101a2edd3ade3945965829b4e7e1eb624133aec (diff) |
pep8.
Diffstat (limited to 'tests/test_couch.py')
-rw-r--r-- | tests/test_couch.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_couch.py b/tests/test_couch.py index b5d6378c..02399e4c 100644 --- a/tests/test_couch.py +++ b/tests/test_couch.py @@ -110,7 +110,7 @@ class CouchDBTestCase(unittest.TestCase): class TestCouchBackendImpl(CouchDBTestCase): def test__allocate_doc_id(self): - db = couch.CouchDatabase('http://localhost:'+str(self.wrapper.port), + db = couch.CouchDatabase('http://localhost:' + str(self.wrapper.port), 'u1db_tests') doc_id1 = db._allocate_doc_id() self.assertTrue(doc_id1.startswith('D-')) @@ -125,13 +125,13 @@ class TestCouchBackendImpl(CouchDBTestCase): def make_couch_database_for_test(test, replica_uid): port = str(test.wrapper.port) - return couch.CouchDatabase('http://localhost:'+port, replica_uid, + return couch.CouchDatabase('http://localhost:' + port, replica_uid, replica_uid=replica_uid or 'test') def copy_couch_database_for_test(test, db): port = str(test.wrapper.port) - new_db = couch.CouchDatabase('http://localhost:'+port, + new_db = couch.CouchDatabase('http://localhost:' + port, db._replica_uid + '_copy', replica_uid=db._replica_uid or 'test') gen, docs = db.get_all_docs(include_deleted=True) |