From: Antoine Pitrou Date: Sat, 13 Apr 2013 20:46:33 +0000 (+0200) Subject: Fix misindent. This would test half less possibilities. X-Git-Tag: v3.4.0a1~953 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1ab0bd788eeaab6816d5ab2b4a691513c4c9228;p=thirdparty%2FPython%2Fcpython.git Fix misindent. This would test half less possibilities. --- diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py index 7c52ee3c8a68..292746bd58cd 100644 --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py @@ -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):