Skip to content

Commit

Permalink
testing with approx tuple to fix ubuntu test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
navneeth committed Aug 11, 2020
1 parent 01aeaa4 commit d0de431
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Tests/test_imageops.py
Expand Up @@ -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')

0 comments on commit d0de431

Please sign in to comment.