Skip to content

Commit

Permalink
fix test tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaehne committed Dec 16, 2024
1 parent 0513ef2 commit 7b7d687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rsciio/tests/test_tiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ def test_hamamatsu_streak_otherfile(self):
np.testing.assert_allclose(s.axes_manager[1].scale, 1.0, rtol=1e-3)
np.testing.assert_allclose(s.axes_manager[1].offset, 0.0, rtol=1e-3, atol=1e-5)
np.testing.assert_allclose(s.axes_manager[0].scale, 1.0, rtol=1e-3)
np.testing.assert_allclose(s.axes_manager[0].offset, 0.0, rtol=1e-3)
np.testing.assert_allclose(s.axes_manager[0].offset, 0.0, rtol=1e-3, atol=1e-5)

def test_hamamatsu_streak_non_uniform_load(self):
file = "test_hamamatsu_streak_SCAN.tif"
Expand Down

0 comments on commit 7b7d687

Please sign in to comment.