Skip to content

Commit

Permalink
Repair AHI HSD tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrp84 committed Dec 12, 2023
1 parent 2469168 commit 3f55256
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions satpy/tests/reader_tests/test_ahi_hsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
"compression_flag_for_data": 0,
"hblock_number": 2,
"number_of_bits_per_pixel": 16,
"number_of_columns": [11000],
"number_of_lines": [1100],
"number_of_columns": np.array([11000]),
"number_of_lines": np.array([1100]),
"spare": "",
}
FAKE_PROJ_INFO: InfoDict = {
Expand Down Expand Up @@ -135,8 +135,8 @@ def test_region(self, fromfile, np2str):
"compression_flag_for_data": 0,
"hblock_number": 2,
"number_of_bits_per_pixel": 16,
"number_of_columns": [1000],
"number_of_lines": [1000],
"number_of_columns": np.array([1000]),
"number_of_lines": np.array([1000]),
"spare": ""}

area_def = fh.get_area_def(None)
Expand Down Expand Up @@ -183,8 +183,8 @@ def test_segment(self, fromfile, np2str):
"compression_flag_for_data": 0,
"hblock_number": 2,
"number_of_bits_per_pixel": 16,
"number_of_columns": [11000],
"number_of_lines": [1100],
"number_of_columns": np.array([11000]),
"number_of_lines": np.array([1100]),
"spare": ""}

area_def = fh.get_area_def(None)
Expand Down

0 comments on commit 3f55256

Please sign in to comment.