Skip to content

Commit

Permalink
Merge pull request #79 from avalentino/fix-tests-on-bigendian-platforms
Browse files Browse the repository at this point in the history
Fix tests on bigendian platforms
  • Loading branch information
mraspaud authored Aug 20, 2020
2 parents 8a7f11e + d708c13 commit 5c59f2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygac/tests/test_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_filename(self):
def test__read_scanlines(self):
"""Test the scanline extraction."""
self.reader.scanline_type = np.dtype([
('a', 'S2'), ('b', 'i4')])
('a', 'S2'), ('b', '<i4')])
# request more scan lines than available
with self.assertWarnsRegex(RuntimeWarning,
"Unexpected number of scanlines!"):
Expand Down

0 comments on commit 5c59f2b

Please sign in to comment.