Skip to content

Commit

Permalink
maybe test is not flaky now?
Browse files Browse the repository at this point in the history
  • Loading branch information
ikrommyd committed Nov 7, 2024
1 parent d3dbd8e commit 6981883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tfpwa/test_basic_example_tfpwa.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ def test_example1_tfpwa():
print(result)

assert result.converged
tol = 0.1 # 20% of one sigma
assert result.fmin - tol<= fit_result.min_nll # check if the result is better at least
tol = 0.1
assert result.fmin == pytest.approx(fit_result.min_nll, abs=tol)

0 comments on commit 6981883

Please sign in to comment.