From d18e55013dafa2da7a68dd5ab911bfdb3826d74c Mon Sep 17 00:00:00 2001 From: German Novikov Date: Sun, 28 Mar 2021 15:02:52 +0300 Subject: [PATCH] Update Tests/test_imageops.py Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- Tests/test_imageops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_imageops.py b/Tests/test_imageops.py index 986c5f887..888afad37 100644 --- a/Tests/test_imageops.py +++ b/Tests/test_imageops.py @@ -375,7 +375,7 @@ def test_autocontrast_preserve_gradient(): assert_image_equal(gradient, out) # cutoff the top and bottom - # autocontrast should make the first and list histogram entries equal + # autocontrast should make the first and last histogram entries equal # and, with rounding, should be 10% of the image pixels out = ImageOps.autocontrast(gradient, cutoff=10, preserve_tone=True) hist = out.histogram()