mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-03-13 09:15:46 +03:00
Merge 05d0aa65f1
into 2dca1a41f0
This commit is contained in:
commit
b732962361
|
@ -69,8 +69,8 @@ def test_3d_array():
|
|||
def _test_img_equals_nparray(img, np):
|
||||
assert_equal(img.size, np.shape[0:2])
|
||||
px = img.load()
|
||||
for x in xrange(0, img.size[0], img.size[0]/10):
|
||||
for y in xrange(0, img.size[1], img.size[1]/10):
|
||||
for x in range(0, img.size[0], int(img.size[0]/10)):
|
||||
for y in range(0, img.size[1], int(img.size[1]/10)):
|
||||
assert_deep_equal(px[x,y], np[y,x])
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user