diff options
Diffstat (limited to 'Lib/test/test_strop.py')
-rw-r--r-- | Lib/test/test_strop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_strop.py b/Lib/test/test_strop.py index 2ac7986..66e7eb6 100644 --- a/Lib/test/test_strop.py +++ b/Lib/test/test_strop.py @@ -15,7 +15,7 @@ class StropFunctionTestCase(unittest.TestCase): self.assertRaises(ValueError, strop.atoi, " x1 ") def test_atol(self): - self.assert_(strop.atol(" 1 ") == 1L) + self.assert_(strop.atol(" 1 ") == 1) self.assertRaises(ValueError, strop.atol, " 1x") self.assertRaises(ValueError, strop.atol, " x1 ") |