Skip to content

Commit

Permalink
geometry_test: relax tolerance for macOS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffjennings committed Nov 10, 2023
1 parent c1ee530 commit 030a988
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/geometry_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def test_rotate_points():
print("Observer", X, Y)
print("return", xs_back, ys_back)

assert xs == approx(xs_back, abs=4e-7)
assert ys == approx(ys_back, abs=4e-7)
assert xs == approx(xs_back, abs=1e-6)
assert ys == approx(ys_back, abs=1e-6)


def test_rotate_coords(coords):
Expand Down

0 comments on commit 030a988

Please sign in to comment.