From d0de431fe47c11ec53f727dcdcae1323d531f4fb Mon Sep 17 00:00:00 2001 From: navneeth Date: Wed, 12 Aug 2020 00:06:16 +0900 Subject: [PATCH] testing with approx tuple to fix ubuntu test failures --- Tests/test_imageops.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Tests/test_imageops.py b/Tests/test_imageops.py index 69a7b9d030a..d4328261d09 100644 --- a/Tests/test_imageops.py +++ b/Tests/test_imageops.py @@ -350,5 +350,13 @@ def test_auto_contrast_mask_real_input(): result_nomask = ImageOps.autocontrast(img) assert result_nomask != result - assert ImageStat.Stat(result, mask=rect_mask).median == [195, 202, 184] - assert ImageStat.Stat(result_nomask).median == [119, 106, 79] + assert_tuple_approx_equal( + ImageStat.Stat(result, mask=rect_mask).median, + [195, 202, 184], + threshold=2, + msg='autocontrast with mask pixel incorrect') + assert_tuple_approx_equal( + ImageStat.Stat(result_nomask).median, + [119, 106, 79], + threshold=2, + msg='autocontrast without mask pixel incorrect')