Skip to content

Commit

Permalink
pythongh-124040: Adjust few tests in testHypot/testDist to get exactl…
Browse files Browse the repository at this point in the history
…y computed results (pythonGH-124042)

(cherry picked from commit 4420cf4)

Co-authored-by: Sergey B Kirpichev <[email protected]>
  • Loading branch information
skirpichev authored and miss-islington committed Sep 19, 2024
1 parent 112b170 commit 86d300d
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Lib/test/test_math.py
Original file line number Diff line number Diff line change
Expand Up @@ -809,11 +809,13 @@ def testHypot(self):
# Test allowable types (those with __float__)
self.assertEqual(hypot(12.0, 5.0), 13.0)
self.assertEqual(hypot(12, 5), 13)
self.assertEqual(hypot(1, -1), math.sqrt(2))
self.assertEqual(hypot(1, FloatLike(-1.)), math.sqrt(2))
self.assertEqual(hypot(0.75, -1), 1.25)
self.assertEqual(hypot(-1, 0.75), 1.25)
self.assertEqual(hypot(0.75, FloatLike(-1.)), 1.25)
self.assertEqual(hypot(FloatLike(-1.), 0.75), 1.25)
self.assertEqual(hypot(Decimal(12), Decimal(5)), 13)
self.assertEqual(hypot(Fraction(12, 32), Fraction(5, 32)), Fraction(13, 32))
self.assertEqual(hypot(bool(1), bool(0), bool(1), bool(1)), math.sqrt(3))
self.assertEqual(hypot(True, False, True, True, True), 2.0)

# Test corner cases
self.assertEqual(hypot(0.0, 0.0), 0.0) # Max input is zero
Expand Down Expand Up @@ -969,9 +971,9 @@ def testDist(self):
self.assertEqual(dist((D(14), D(1)), (D(2), D(-4))), D(13))
self.assertEqual(dist((F(14, 32), F(1, 32)), (F(2, 32), F(-4, 32))),
F(13, 32))
self.assertEqual(dist((True, True, False, True, False),
(True, False, True, True, False)),
sqrt(2.0))
self.assertEqual(dist((True, True, False, False, True, True),
(True, False, True, False, False, False)),
2.0)

# Test corner cases
self.assertEqual(dist((13.25, 12.5, -3.25),
Expand Down

0 comments on commit 86d300d

Please sign in to comment.