Issue #18659: fix test_format test that wasn't being executed. Thanks Vajrasky Kok for the patch.

This commit is contained in:
Mark Dickinson 2013-10-13 11:04:36 +01:00
parent 31f6f4dd03
commit ef8627b3f0
1 changed files with 5 additions and 8 deletions

View File

@ -327,12 +327,9 @@ class FormatTest(unittest.TestCase):
self.assertIs(text % (), text)
self.assertIs(text.format(), text)
def test_main():
support.run_unittest(FormatTest)
@support.cpython_only
def test_precision(self):
INT_MAX = 2147483647
from _testcapi import INT_MAX
f = 1.2
self.assertEqual(format(f, ".0f"), "1")
@ -342,10 +339,10 @@ def test_main():
self.assertEqual(str(cm.exception), "precision too big")
c = complex(f)
self.assertEqual(format(f, ".0f"), "1")
self.assertEqual(format(f, ".3f"), "1.200")
self.assertEqual(format(c, ".0f"), "1+0j")
self.assertEqual(format(c, ".3f"), "1.200+0.000j")
with self.assertRaises(ValueError) as cm:
format(f, ".%sf" % (INT_MAX + 1))
format(c, ".%sf" % (INT_MAX + 1))
self.assertEqual(str(cm.exception), "precision too big")