Skip to content

Commit

Permalink
relax tolerance of test
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-simpson committed Nov 21, 2024
1 parent d6027fd commit cc4d98f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def test_consistent_air_and_vacuum_solutions(ad, params):
wair = wave_air(x)
wvac = air_to_vac(wair * u.nm).to(u.nm).value
dw = wvac - wave_vac(x)
assert abs(dw).max() < 0.001
assert abs(dw).max() < 0.005 # 1/20 pixel


# We only need to test this with one input
Expand Down

0 comments on commit cc4d98f

Please sign in to comment.