diff --git a/satpy/tests/reader_tests/test_sar_c_safe.py b/satpy/tests/reader_tests/test_sar_c_safe.py index da198d4392..7a4b0ff79b 100644 --- a/satpy/tests/reader_tests/test_sar_c_safe.py +++ b/satpy/tests/reader_tests/test_sar_c_safe.py @@ -299,7 +299,7 @@ def test_read_calibrated_dB(self, measurement_filehandler): xarr = measurement_filehandler.get_dataset(DataQuery(name="measurement", polarization="vv", calibration=calibration, quantity="dB"), info=dict()) expected = np.array([[np.nan, -15.674268], [4.079997, 5.153585]], dtype=np.float32) - np.testing.assert_allclose(xarr.values[:2, :2], expected) + np.testing.assert_allclose(xarr.values[:2, :2], expected, rtol=1e-6) assert xarr.dtype == np.float32 def test_read_lon_lats(self, measurement_filehandler):