Merge pull request #129 from cgohlke/patch-2

Remove test that fails when numpy.int is 64 bit
This commit is contained in:
Alex Clark ☺ 2013-03-14 17:48:03 -07:00
commit d635b516ea

View File

@ -40,7 +40,6 @@ def test_numpy_to_image():
assert_exception(TypeError, lambda: to_image(numpy.uint32))
assert_exception(TypeError, lambda: to_image(numpy.uint64))
assert_image(to_image(numpy.int), "I", (10, 10))
assert_image(to_image(numpy.int8), "I", (10, 10))
assert_image(to_image(numpy.int16), "I;16", (10, 10))
assert_image(to_image(numpy.int32), "I", (10, 10))