]> granicus.if.org Git - python/commitdiff
Remove overeager test (don't depend on the sign of a nan; cf. issue #14521)
authorMark Dickinson <mdickinson@enthought.com>
Fri, 24 Aug 2012 19:26:23 +0000 (20:26 +0100)
committerMark Dickinson <mdickinson@enthought.com>
Fri, 24 Aug 2012 19:26:23 +0000 (20:26 +0100)
Lib/test/test_decimal.py

index 6cc3327d76e1df1ab342f557e6aa502b658d4876..3e184efc2e1971a893dc86f1d2af9c4cd1b95482 100644 (file)
@@ -1454,8 +1454,6 @@ class DecimalUsabilityTest(unittest.TestCase):
         for s in ('nan', 'nan1234', '-nan', '-nan2468'):
             f = float(Decimal(s))
             self.assertTrue(math.isnan(f))
-            sign = math.copysign(1.0, f)
-            self.assertEqual(sign, -1.0 if s.startswith('-') else 1.0)
 
     def test_snan_to_float(self):
         for s in ('snan', '-snan', 'snan1357', '-snan1234'):