From 596dc05816e1033651ef9548ffab77da3e871c89 Mon Sep 17 00:00:00 2001 From: "Islam, Fahima F" Date: Mon, 17 Feb 2020 11:51:27 -0500 Subject: [PATCH] change atol --- tests/unit/test_peak_fit_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_peak_fit_engine.py b/tests/unit/test_peak_fit_engine.py index 7751b0d84..cc372ef58 100644 --- a/tests/unit/test_peak_fit_engine.py +++ b/tests/unit/test_peak_fit_engine.py @@ -773,7 +773,7 @@ def test_pseudovoigt_HB2B_1060(target_values): np.testing.assert_allclose(param_values_rp['Intensity'], target_values['Intensity'][1], atol=0.01) np.testing.assert_allclose(param_values_rp['PeakCentre'], target_values['peak_center'][1], atol=1) - np.testing.assert_allclose(param_values_rp['FWHM'], target_values['FWHM'][1], atol=1.) + np.testing.assert_allclose(param_values_rp['FWHM'], target_values['FWHM'][1], atol=1.2) np.testing.assert_allclose(param_values_rp['A0'], target_values['background_A0'][1], atol=1.) np.testing.assert_allclose(param_values_rp['A1'], target_values['background_A1'][1], atol=1.)