summaryrefslogtreecommitdiff
path: root/src/leap/soledad/tests/test_couch.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2013-01-24 23:12:05 +0900
committerkali <kali@leap.se>2013-01-24 23:12:05 +0900
commit0903742e5c46b1dc52dd3f872c3f9355412f70ca (patch)
treecc850f1048b9ca1932d070b9ea247825d2e0f5b0 /src/leap/soledad/tests/test_couch.py
parente1494639f57cafddfd433c62adaa52a21f104e10 (diff)
moar pep8 cleanup!
watch out the skynet gadget on line 42
Diffstat (limited to 'src/leap/soledad/tests/test_couch.py')
-rw-r--r--src/leap/soledad/tests/test_couch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/soledad/tests/test_couch.py b/src/leap/soledad/tests/test_couch.py
index b7fab193..5e8d6126 100644
--- a/src/leap/soledad/tests/test_couch.py
+++ b/src/leap/soledad/tests/test_couch.py
@@ -41,7 +41,7 @@ def make_couch_database_for_test(test, replica_uid):
def copy_couch_database_for_test(test, db):
new_db = couch.CouchDatabase('http://localhost:5984',
- db._replica_uid+'_copy',
+ db._replica_uid + '_copy',
replica_uid=db._replica_uid or 'test')
gen, docs = db.get_all_docs(include_deleted=True)
for doc in docs:
@@ -112,7 +112,7 @@ class CouchWithConflictsTests(
# the server, so indexing makes no sense. Thus, we ignore index testing for
# now.
-#class CouchIndexTests(DatabaseIndexTests):
+# class CouchIndexTests(DatabaseIndexTests):
#
# scenarios = COUCH_SCENARIOS
#