From 52af2cdb324f5d4f48bca704751d8e5414b22acf Mon Sep 17 00:00:00 2001 From: Iason Krommydas Date: Thu, 7 Nov 2024 16:19:56 -0600 Subject: [PATCH] increase tolerance --- tests/tfpwa/test_basic_example_tfpwa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tfpwa/test_basic_example_tfpwa.py b/tests/tfpwa/test_basic_example_tfpwa.py index 6b100b1..7fd9d49 100644 --- a/tests/tfpwa/test_basic_example_tfpwa.py +++ b/tests/tfpwa/test_basic_example_tfpwa.py @@ -90,5 +90,5 @@ def test_example1_tfpwa(): print(result) assert result.converged - tol = 1.0 + tol = 3.0 assert result.fmin == pytest.approx(fit_result.min_nll, abs=tol)