mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
commit
41b1021ffe
|
@ -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