mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 09:56:17 +03:00
Added test
This commit is contained in:
parent
0521ac71e0
commit
ca16cf2aac
|
@ -433,7 +433,9 @@ def test_apng_save_duration_loop(tmp_path):
|
|||
|
||||
# test removal of duplicated frames
|
||||
frame = Image.new("RGBA", (128, 64), (255, 0, 0, 255))
|
||||
frame.save(test_file, save_all=True, append_images=[frame], duration=[500, 250])
|
||||
frame.save(
|
||||
test_file, save_all=True, append_images=[frame, frame], duration=[500, 100, 150]
|
||||
)
|
||||
with Image.open(test_file) as im:
|
||||
im.load()
|
||||
assert im.n_frames == 1
|
||||
|
|
Loading…
Reference in New Issue
Block a user