Skip to content

Commit e1bc272

Browse files
authored
Update Lib/test/test_math.py
1 parent 92732bb commit e1bc272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_math.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ def test_fmin_nans(self):
705705
self.assertFalse(math.isnan(math.fmin(x, NAN)))
706706
self.assertFalse(math.isnan(math.fmin(NNAN, x)))
707707
self.assertFalse(math.isnan(math.fmin(x, NNAN)))
708-
# When both operands are NaNs, fmin() returns NaN (see C11, F.10.9.2)
708+
# When both operands are NaNs, fmin() returns NaN (see C11, F.10.9.3)
709709
# whose sign is implementation-defined (see C11, F.10.0.3).
710710
self.assertTrue(math.isnan(math.fmin(NAN, NAN)))
711711
self.assertTrue(math.isnan(math.fmin(NNAN, NNAN)))

0 commit comments

Comments
 (0)