tests/test-linerange.py
changeset 43076 2372284d9457
parent 37583 6939b6ac960a
child 43366 ee3a55c8fd0f
--- a/tests/test-linerange.py	Sat Oct 05 10:29:34 2019 -0400
+++ b/tests/test-linerange.py	Sun Oct 06 09:45:02 2019 -0400
@@ -17,7 +17,9 @@
            09 at OLD
            10 at OLD
            11 at OLD
-'''[1:] # strip initial LF
+'''[
+    1:
+]  # strip initial LF
 
 text2 = b'''
 00 at NEW
@@ -32,7 +34,10 @@
 09 at NEW
 10 at NEW
 11 at NEW
-'''[1:] # strip initial LF
+'''[
+    1:
+]  # strip initial LF
+
 
 def filteredblocks(blocks, rangeb):
     """return `rangea` extracted from `blocks` coming from
@@ -42,8 +47,8 @@
     skipped = [b not in filtered for b in blocks]
     return rangea, skipped
 
+
 class blocksinrangetests(unittest.TestCase):
-
     def setUp(self):
         self.blocks = list(mdiff.allblocks(text1, text2))
         assert self.blocks == [
@@ -227,6 +232,8 @@
             else:
                 self.fail('%s not raised' % exctype.__name__)
 
+
 if __name__ == '__main__':
     import silenttestrunner
+
     silenttestrunner.main(__name__)