From 78b6adb2e6b718a7997dffe54664a127bf3407c7 Mon Sep 17 00:00:00 2001 From: Melanie Clarke Date: Mon, 30 Sep 2024 16:26:26 -0400 Subject: [PATCH] Fix tolerance for coron test on Linux --- jwst/coron/tests/test_coron.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jwst/coron/tests/test_coron.py b/jwst/coron/tests/test_coron.py index cd90f80049..4c3d3dbebe 100644 --- a/jwst/coron/tests/test_coron.py +++ b/jwst/coron/tests/test_coron.py @@ -141,8 +141,8 @@ def test_align_array(): ] ) - npt.assert_allclose(aligned, truth_aligned, atol=1e-5) - npt.assert_allclose(shifts, truth_shifts, atol=1e-5) + npt.assert_allclose(aligned, truth_aligned, atol=1e-4, rtol=1e-5) + npt.assert_allclose(shifts, truth_shifts, atol=1e-4, rtol=1e-5) def test_align_models():