Skip to content

Commit

Permalink
JP-3614: relaxed tolerance for coron unit test (#8490)
Browse files Browse the repository at this point in the history
  • Loading branch information
emolter committed May 18, 2024
1 parent e915bb2 commit e9d45e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jwst/coron/tests/test_coron.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ def test_align_array():
]
)

npt.assert_allclose(aligned, truth_aligned, atol=1e-6)
npt.assert_allclose(shifts, truth_shifts, atol=1e-6)
npt.assert_allclose(aligned, truth_aligned, atol=1e-5)
npt.assert_allclose(shifts, truth_shifts, atol=1e-5)


def test_align_models():
Expand Down

0 comments on commit e9d45e2

Please sign in to comment.