Skip to content

Commit

Permalink
TST: Update numpy dtype flags test to not covert flags to char
Browse files Browse the repository at this point in the history
  • Loading branch information
seberg committed Mar 6, 2024
1 parent 0090fc7 commit 83883c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_numpy_dtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def test_dtype(simple_dtype):
assert m.test_dtype_num() == [np.dtype(ch).num for ch in expected_chars]
assert m.test_dtype_byteorder() == [np.dtype(ch).byteorder for ch in expected_chars]
assert m.test_dtype_alignment() == [np.dtype(ch).alignment for ch in expected_chars]
assert m.test_dtype_flags() == [chr(np.dtype(ch).flags) for ch in expected_chars]
assert m.test_dtype_flags() == [np.dtype(ch).flags for ch in expected_chars]


def test_recarray(simple_dtype, packed_dtype):
Expand Down

0 comments on commit 83883c7

Please sign in to comment.