We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a858aa1 commit f23a339Copy full SHA for f23a339
1 file changed
Lib/test/test_math.py
@@ -706,7 +706,6 @@ def test_fmin_nans(self):
706
# When exactly one operand is NaN, the other is returned.
707
for x in [NINF, -1., -0., 0., 1., INF]:
708
with self.subTest(x=x):
709
- self.assertFalse(math.isnan(x))
710
self.assertFalse(math.isnan(math.fmin(NAN, x)))
711
self.assertFalse(math.isnan(math.fmin(x, NAN)))
712
self.assertFalse(math.isnan(math.fmin(NNAN, x)))
0 commit comments