From c1ab0bd788eeaab6816d5ab2b4a691513c4c9228 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sat, 13 Apr 2013 22:46:33 +0200 Subject: [PATCH] Fix misindent. This would test half less possibilities. --- Lib/test/test_marshal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py index 7c52ee3c8a6..292746bd58c 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):