summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_int.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2012-12-27 22:36:34 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2012-12-27 22:36:34 (GMT)
commitf823da1f0969fe50e265fdc905dfb78e03b39e1c (patch)
treec7fd8c5a9b79468177c4517f47bf48546d304185 /Lib/test/test_int.py
parent3cd0e307477037e6002f68887ede3fc7d744c165 (diff)
parenta29159b07560f6484175769fd4d470948341ccce (diff)
downloadcpython-f823da1f0969fe50e265fdc905dfb78e03b39e1c.zip
cpython-f823da1f0969fe50e265fdc905dfb78e03b39e1c.tar.gz
cpython-f823da1f0969fe50e265fdc905dfb78e03b39e1c.tar.bz2
Issue #16793. Replace deprecated unittest asserts with modern counterparts.
Diffstat (limited to 'Lib/test/test_int.py')
-rw-r--r--Lib/test/test_int.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/Lib/test/test_int.py b/Lib/test/test_int.py
index 7261474..db79926 100644
--- a/Lib/test/test_int.py
+++ b/Lib/test/test_int.py
@@ -226,23 +226,23 @@ class IntTestCases(unittest.TestCase):
self.assertIs(int(b'-1'), -1)
def test_no_args(self):
- self.assertEquals(int(), 0)
+ self.assertEqual(int(), 0)
def test_keyword_args(self):
# Test invoking int() using keyword arguments.
- self.assertEquals(int(x=1.2), 1)
- self.assertEquals(int('100', base=2), 4)
- self.assertEquals(int(x='100', base=2), 4)
+ self.assertEqual(int(x=1.2), 1)
+ self.assertEqual(int('100', base=2), 4)
+ self.assertEqual(int(x='100', base=2), 4)
# For example, PyPy 1.9.0 raised TypeError for these cases because it
# expects x to be a string if base is given.
@support.cpython_only
def test_base_arg_with_no_x_arg(self):
- self.assertEquals(int(base=6), 0)
+ self.assertEqual(int(base=6), 0)
# Even invalid bases don't raise an exception.
- self.assertEquals(int(base=1), 0)
- self.assertEquals(int(base=1000), 0)
- self.assertEquals(int(base='foo'), 0)
+ self.assertEqual(int(base=1), 0)
+ self.assertEqual(int(base=1000), 0)
+ self.assertEqual(int(base='foo'), 0)
def test_int_base_limits(self):
"""Testing the supported limits of the int() base parameter."""
@@ -283,8 +283,8 @@ class IntTestCases(unittest.TestCase):
for x in values:
msg = 'x has type %s' % type(x).__name__
- self.assertEquals(int(x), 100, msg=msg)
- self.assertEquals(int(x, 2), 4, msg=msg)
+ self.assertEqual(int(x), 100, msg=msg)
+ self.assertEqual(int(x, 2), 4, msg=msg)
def test_string_float(self):
self.assertRaises(ValueError, int, '1.2')