diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 1c21218a3..b318076d2 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -1557,7 +1557,6 @@ class MathTests(unittest.TestCase): # def test_nan_constant(self): # self.assertTrue(math.isnan(math.nan)) - # TODO: RUSTPYTHON @requires_IEEE_754 def test_inf_constant(self): self.assertTrue(math.isinf(math.inf)) diff --git a/vm/src/stdlib/math.rs b/vm/src/stdlib/math.rs index a5f569ca4..ecaae2776 100644 --- a/vm/src/stdlib/math.rs +++ b/vm/src/stdlib/math.rs @@ -388,9 +388,7 @@ fn math_fsum(iter: PyIterable, vm: &VirtualMachine) -> PyResult