]> granicus.if.org Git - python/commitdiff
Fix misindent. This would test half less possibilities.
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 13 Apr 2013 20:46:33 +0000 (22:46 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 13 Apr 2013 20:46:33 +0000 (22:46 +0200)
Lib/test/test_marshal.py

index 7c52ee3c8a68db26a053c39c3569970281abb657..292746bd58cd51fc35a4b85bff2d308f1868b075 100644 (file)
@@ -28,7 +28,7 @@ class IntTestCase(unittest.TestCase, HelperMixin):
         while n:
             for expected in (-n, n):
                 self.helper(expected)
-                n = n >> 1
+            n = n >> 1
 
     def test_bool(self):
         for b in (True, False):