summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorantialias <antialias@leap.se>2013-01-30 13:26:18 -0500
committerantialias <antialias@leap.se>2013-01-30 13:26:18 -0500
commite6f5027e42c8dbcde2a42cd48b9f7a54731fc10d (patch)
tree1847fc5fd2e4dac8ee8ed85f58d0433740ecd8a8 /tests
parent3101a2edd3ade3945965829b4e7e1eb624133aec (diff)
pep8.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_couch.py6
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)