diff --git a/Tests/test_file_ico.py b/Tests/test_file_ico.py index a5f728c4229..34fb42abf4d 100644 --- a/Tests/test_file_ico.py +++ b/Tests/test_file_ico.py @@ -85,8 +85,8 @@ def test_only_save_relevant_sizes(tmp_path): assert im_saved.info["sizes"] == {(16, 16), (24, 24), (32, 32), (48, 48)} -def test_only_save_append_images(tmp_path): - """append_images should work to provide alternative sizes""" +def test_save_append_images(tmp_path): + # append_images should be used for scaled down versions of the image im = hopper("RGBA") provided_im = Image.new("RGBA", (32, 32), (255, 0, 0)) outfile = str(tmp_path / "temp_saved_multi_icon.ico")