diff --git a/tests/integration/preprocessor/_regrid/test_regrid.py b/tests/integration/preprocessor/_regrid/test_regrid.py index a6ba8b95b5..ee0d056686 100644 --- a/tests/integration/preprocessor/_regrid/test_regrid.py +++ b/tests/integration/preprocessor/_regrid/test_regrid.py @@ -241,11 +241,6 @@ def test_regrid__unstructured_nearest_int(self): expected = np.array([[[1]], [[1]], [[1]]]) np.testing.assert_array_equal(result.data, expected) - # Make sure that dtype is not preserved (since conversion from float to - # int would be necessary) - assert np.issubdtype(self.unstructured_grid_cube.dtype, np.integer) - assert result.dtype == np.float64 - # Make sure that output is a masked array with correct fill value # (= maximum int) np.testing.assert_allclose(result.data.fill_value,