relax HEIC threshold

argh rounding with different lib versions
This commit is contained in:
John Cupitt 2019-08-19 16:44:32 +01:00
parent 2d0c21279a
commit d70c431961
1 changed files with 3 additions and 1 deletions

View File

@ -842,7 +842,9 @@ class TestForeign:
def test_heifload(self):
def heif_valid(im):
a = im(10, 10)
assert_almost_equal_objects(a, [75.0, 86.0, 81.0])
# different versions of HEIC decode have slightly different
# rounding
assert_almost_equal_objects(a, [75.0, 86.0, 81.0], threshold=2)
assert im.width == 4032
assert im.height == 3024
assert im.bands == 3