We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c45949 commit 9116d69Copy full SHA for 9116d69
tests/test_numpy_dtypes.py
@@ -178,7 +178,7 @@ def test_dtype(simple_dtype):
178
assert m.test_dtype_num() == [np.dtype(ch).num for ch in expected_chars]
179
assert m.test_dtype_byteorder() == [np.dtype(ch).byteorder for ch in expected_chars]
180
assert m.test_dtype_alignment() == [np.dtype(ch).alignment for ch in expected_chars]
181
- 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]
182
183
184
def test_recarray(simple_dtype, packed_dtype):
0 commit comments