Skip to content
Snippets Groups Projects
Commit 78608d54 authored by David Gobbi's avatar David Gobbi
Browse files

Remove numpy.character comments from numpy test

The use of "character" as a dtype in numpy has been deprecated for
years (#18097), so comments about supporting it in VTK's numpy
interface are out-of-date.
parent 5267f004
No related branches found
No related tags found
No related merge requests found
......@@ -51,10 +51,6 @@ class TestNumpySupport(Testing.vtkTest):
# Test the different types of arrays.
t_z.append(numpy.array([-128, 0, 127], numpy.int8))
# FIXME: character arrays are a problem since there is no
# unique mapping to a VTK data type and back.
#t_z.append(numpy.array([-128, 0, 127], numpy.character))
t_z.append(numpy.array([-32768, 0, 32767], numpy.int16))
t_z.append(numpy.array([-2147483648, 0, 2147483647], numpy.int32))
t_z.append(numpy.array([0, 255], numpy.uint8))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment