Skip to content

Commit

Permalink
Fix identical polygon test accuracy for unit tests (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcara authored May 17, 2024
1 parent 7b28495 commit 88984dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drizzle/tests/test_overlap_calc.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
SQ2 = 1.0 / sqrt(2.0)


def _is_poly_eq(p1, p2, rtol=0, atol=1e-12):
def _is_poly_eq(p1, p2, rtol=0, atol=4e-12):
if len(p1) != len(p2):
return False

Expand Down

0 comments on commit 88984dd

Please sign in to comment.