Skip to content
Prev Previous commit
Next Next commit
remove unnecessary byte order change, handled upstream.
  • Loading branch information
tasansal committed Sep 5, 2025
commit 03e323fcb2f4149db4189e5047cb7213689c4ae7
4 changes: 2 additions & 2 deletions tests/integration/testing_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def validate_variable( # noqa PLR0913
assert expected_names == actual_names

# Compare field types
expected_types = [data_type[name].newbyteorder("=") for name in data_type.names]
actual_types = [arr.dtype[name].newbyteorder("=") for name in arr.dtype.names]
expected_types = [data_type[name] for name in data_type.names]
actual_types = [arr.dtype[name] for name in arr.dtype.names]
assert expected_types == actual_types

# Compare field offsets fails.
Expand Down