Commit e9d77f40 authored by Robert Bradshaw's avatar Robert Bradshaw

Fix one numpy test by specifying sign of char.

parent 74f4891a
...@@ -519,9 +519,9 @@ def test_structarray_errors(StructArray[:] a): ...@@ -519,9 +519,9 @@ def test_structarray_errors(StructArray[:] a):
""" """
cdef struct StringStruct: cdef struct StringStruct:
char c[4][4] signed char c[4][4]
ctypedef char String[4][4] ctypedef signed char String[4][4]
def stringstructtest(StringStruct[:] view): def stringstructtest(StringStruct[:] view):
pass pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment