mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
Merged revisions 86596 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
This commit is contained in:
parent
b65b4937e2
commit
19f2aeba67
164 changed files with 2281 additions and 2279 deletions
|
@ -341,8 +341,8 @@ class IEEEFormatTestCase(unittest.TestCase):
|
|||
return -0.0, math.atan2(0.0, -1)
|
||||
def neg_neg():
|
||||
return -0.0, math.atan2(-0.0, -1)
|
||||
self.assertEquals(pos_pos(), neg_pos())
|
||||
self.assertEquals(pos_neg(), neg_neg())
|
||||
self.assertEqual(pos_pos(), neg_pos())
|
||||
self.assertEqual(pos_neg(), neg_neg())
|
||||
|
||||
class FormatTestCase(unittest.TestCase):
|
||||
def test_format(self):
|
||||
|
@ -415,9 +415,9 @@ class FormatTestCase(unittest.TestCase):
|
|||
self.assertEqual(fmt % -float(arg), '-' + rhs)
|
||||
|
||||
def test_issue5864(self):
|
||||
self.assertEquals(format(123.456, '.4'), '123.5')
|
||||
self.assertEquals(format(1234.56, '.4'), '1.235e+03')
|
||||
self.assertEquals(format(12345.6, '.4'), '1.235e+04')
|
||||
self.assertEqual(format(123.456, '.4'), '123.5')
|
||||
self.assertEqual(format(1234.56, '.4'), '1.235e+03')
|
||||
self.assertEqual(format(12345.6, '.4'), '1.235e+04')
|
||||
|
||||
class ReprTestCase(unittest.TestCase):
|
||||
def test_repr(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue