From 054f1ef870d293175587b8b5f18b505cccfce7e5 Mon Sep 17 00:00:00 2001 From: Christoph Gohlke Date: Thu, 14 Mar 2013 17:14:44 -0700 Subject: [PATCH] Remove test that fails when numpy.int is 64 bit Fixes issues #75 --- Tests/test_numpy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Tests/test_numpy.py b/Tests/test_numpy.py index ea154afb8..3253c2b5f 100644 --- a/Tests/test_numpy.py +++ b/Tests/test_numpy.py @@ -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))