diff options
Diffstat (limited to 'Lib/test/test_decimal.py')
-rw-r--r-- | Lib/test/test_decimal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 50a9ad4..71b93a6 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -1838,7 +1838,7 @@ class UsabilityTest(unittest.TestCase): self.assertIs(max(d1,d2), d2) self.assertIs(max(d2,d1), d2) - #between Decimal and long + #between Decimal and int self.assertIs(min(d1,l2), d1) self.assertIs(min(l2,d1), d1) self.assertIs(max(l1,d2), d2) |