From 1c242a0f0ef8d729593c7ac09b9ee5536fcfa01f Mon Sep 17 00:00:00 2001 From: yukaribbba Date: Mon, 22 Apr 2024 21:56:51 +0800 Subject: [PATCH] Update test_composites.py --- satpy/tests/test_composites.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/satpy/tests/test_composites.py b/satpy/tests/test_composites.py index 66f354696c..dacfffd73d 100644 --- a/satpy/tests/test_composites.py +++ b/satpy/tests/test_composites.py @@ -978,7 +978,7 @@ def test_cloud_compositor_validity_checks(self): """Test that errors are raised for invalid settings.""" from satpy.composites import CloudCompositor with pytest.raises(ValueError, match="Invalid mode RGB. Supported modes: LA, RGBA"): - res = CloudCompositor("test", mode="RGB") + _ = CloudCompositor("test", mode="RGB") class TestPrecipCloudsCompositor(unittest.TestCase):