Skip to content
Snippets Groups Projects
Commit b17657ea authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

Rosenbrock fit test -> reduce expectation to 2 digits agreement

parent 8393dca5
No related branches found
No related tags found
1 merge request!1639relax test tolerances as numeric outcomes have changed on mac-arm
......@@ -67,11 +67,11 @@ class StandaloneFitTest(unittest.TestCase):
# check found parameter values
np.testing.assert_almost_equal(result.parameters().values(),
model.m_expected_params, 3)
model.m_expected_params, 2)
# check found minimum
np.testing.assert_almost_equal(result.minValue(),
model.m_expected_minimum, 3)
model.m_expected_minimum, 2)
def test_DecayingSinFit(self):
params = ba.Parameters()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment