diff options
-rw-r--r-- | Lib/test/test_marshal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py index 7c52ee3..292746b 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): |