Skip to content

Commit

Permalink
increase tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
kelle committed Nov 15, 2024
1 parent 04a895d commit da1028f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_isochrone.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def test_evaluate(xval, age, xparam, yparam, expected_result, expected_result_lo
assert (isinstance(result, tuple)) is True
if yparam == 'logg':
assert (np.isclose(average, expected_result, atol=0.006))
assert (np.isclose(lower, expected_result_low, atol=0.01))
assert (np.isclose(upper, expected_result_up, atol=0.01))
assert (np.isclose(lower, expected_result_low, atol=0.015))
assert (np.isclose(upper, expected_result_up, atol=0.015))
else:
assert (np.isclose(average.value, expected_result, atol=0.005))
assert (np.isclose(lower.value, expected_result_low, atol=0.01))
Expand Down

0 comments on commit da1028f

Please sign in to comment.