From 44263f7cdbbe9ab84a4bbc0968f8efc46afad107 Mon Sep 17 00:00:00 2001 From: Andrea Meraner <49722768+ameraner@users.noreply.github.com> Date: Fri, 26 Jul 2024 10:14:58 +0200 Subject: [PATCH] fix alignment of tuple Co-authored-by: Martin Raspaud --- satpy/tests/reader_tests/test_fci_l1c_nc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/satpy/tests/reader_tests/test_fci_l1c_nc.py b/satpy/tests/reader_tests/test_fci_l1c_nc.py index 9d0f86409a..d31713b68b 100644 --- a/satpy/tests/reader_tests/test_fci_l1c_nc.py +++ b/satpy/tests/reader_tests/test_fci_l1c_nc.py @@ -719,7 +719,7 @@ def _other_calibration_test(self,res,ch,dict_arg): def _shape_test(self,res,ch,grid_type,dict_arg): """Test the shape.""" assert res[ch].shape == (GRID_TYPE_INFO_FOR_TEST_CONTENT[grid_type]["nrows"], - GRID_TYPE_INFO_FOR_TEST_CONTENT[grid_type]["ncols"]) + GRID_TYPE_INFO_FOR_TEST_CONTENT[grid_type]["ncols"]) assert res[ch].dtype == dict_arg["dtype"] def _get_assert_load(self,res,ch,dict_arg,filenames):