Skip to content
Snippets Groups Projects
Commit 4332987fee74 authored by Nsukami Patrick <ndkpatt at gmail dot com>'s avatar Nsukami Patrick
Browse files

Flake8: E127 continuation line over-indented for visual indent

parent 0de12b45f744
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
def test_schema(self):
self.assertEqual(self.schema['comments'].rdef('Comment', 'BlogEntry').composite,
'object')
'object')
def test_possible_views(self):
# comment primary view priority
......@@ -101,5 +101,5 @@
c12 = cnx.create_entity('Comment', content=u"one-two", comments=c1)
c2 = cnx.create_entity('Comment', content=u"two", comments=self.b)
self.assertEqual([c.eid for c in b.reverse_comments],
[c1.eid, c2.eid])
[c1.eid, c2.eid])
self.assertEqual([c.eid for c in c1.cw_adapt_to('ITree').children()],
......@@ -105,5 +105,5 @@
self.assertEqual([c.eid for c in c1.cw_adapt_to('ITree').children()],
[c11.eid, c12.eid])
[c11.eid, c12.eid])
def test_subcomments_count(self):
with self.admin_access.repo_cnx() as cnx:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment