# HG changeset patch
# User Nsukami Patrick <ndkpatt at gmail dot com>
# Date 1551449727 0
#      Fri Mar 01 14:15:27 2019 +0000
# Node ID 4332987fee74aa5ad12cb316983f04d90b269a73
# Parent  0de12b45f744c077760897b35bde47ab68e21800
Flake8: E127 continuation line over-indented for visual indent

diff --git a/test/unittest_comment.py b/test/unittest_comment.py
--- a/test/unittest_comment.py
+++ b/test/unittest_comment.py
@@ -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,9 +101,9 @@
             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()],
-                              [c11.eid, c12.eid])
+                             [c11.eid, c12.eid])
 
     def test_subcomments_count(self):
         with self.admin_access.repo_cnx() as cnx: