Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
itzpr3d4t0r committed Jul 12, 2024
1 parent 54c58df commit 017dcf3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test_circle.py
Original file line number Diff line number Diff line change
Expand Up @@ -1506,7 +1506,6 @@ def test_intersect_return_type(self):

objects = [
Circle(10, 10, 4),
Rect(10, 10, 4, 4),
]

for object in objects:
Expand All @@ -1525,7 +1524,9 @@ def test_intersect(self):
self.assertEqual(c.intersect(circle), [])

# intersecting circle
self.assertEqual([(10.25, 6.007820144332172), (10.25, 13.992179855667828)], c.intersect(c4))
self.assertEqual(
[(10.25, 6.007820144332172), (10.25, 13.992179855667828)], c.intersect(c4)
)

# touching
self.assertEqual([(14.0, 10.0)], c.intersect(c5))
Expand Down

0 comments on commit 017dcf3

Please sign in to comment.