Skip to content

Commit

Permalink
Remove unnecessary dtype parametrization
Browse files Browse the repository at this point in the history
  • Loading branch information
lahtinep committed Oct 25, 2024
1 parent de80552 commit 3f1076a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions satpy/tests/test_composites.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,7 @@ def test_more_than_three_datasets(self):
with pytest.raises(ValueError, match="Expected 3 datasets, got 4"):
comp((self.ds1, self.ds2, self.ds3, self.ds1), optional_datasets=(self.ds4_big,))

@pytest.mark.parametrize("dtype", [np.float32, np.float64])
def test_self_sharpened_no_high_res(self, dtype):
def test_self_sharpened_no_high_res(self):
"""Test for exception when no high_res band is specified."""
from satpy.composites import SelfSharpenedRGB
comp = SelfSharpenedRGB(name="true_color", high_resolution_band=None)
Expand Down

0 comments on commit 3f1076a

Please sign in to comment.