Blame SOURCES/python-pillow_endian.patch
|
|
be77d0 |
--- python-imaging-Pillow-d1c6db8/Tests/test_numpy.py 2013-04-19 02:11:52.000000000 +0200
|
|
|
be77d0 |
+++ python-imaging-Pillow-d1c6db8/Tests/test_numpy.py 2013-05-07 23:50:38.425987793 +0200
|
|
|
be77d0 |
@@ -41,7 +41,10 @@ def test_numpy_to_image():
|
|
|
be77d0 |
assert_exception(TypeError, lambda: to_image(numpy.uint64))
|
|
|
be77d0 |
|
|
|
be77d0 |
assert_image(to_image(numpy.int8), "I", (10, 10))
|
|
|
be77d0 |
- assert_image(to_image(numpy.int16), "I;16", (10, 10))
|
|
|
be77d0 |
+ if Image._ENDIAN == '<': # Little endian
|
|
|
be77d0 |
+ assert_image(to_image(numpy.int16), "I;16", (10, 10))
|
|
|
be77d0 |
+ else:
|
|
|
be77d0 |
+ assert_image(to_image(numpy.int16), "I;16B", (10, 10))
|
|
|
be77d0 |
assert_image(to_image(numpy.int32), "I", (10, 10))
|
|
|
be77d0 |
assert_exception(TypeError, lambda: to_image(numpy.int64))
|
|
|
be77d0 |
|