Skip to content

Commit f23a339

Browse files
authored
Update Lib/test/test_math.py
1 parent a858aa1 commit f23a339

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

Lib/test/test_math.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,6 @@ def test_fmin_nans(self):
706706
# When exactly one operand is NaN, the other is returned.
707707
for x in [NINF, -1., -0., 0., 1., INF]:
708708
with self.subTest(x=x):
709-
self.assertFalse(math.isnan(x))
710709
self.assertFalse(math.isnan(math.fmin(NAN, x)))
711710
self.assertFalse(math.isnan(math.fmin(x, NAN)))
712711
self.assertFalse(math.isnan(math.fmin(NNAN, x)))

0 commit comments

Comments
 (0)