DEV: depend less on pngquant version (#26906)

This spec has been failing forever on my machine. I guess I have a "better" version of pngquant?

---------

Co-authored-by: Jarek Radosz <jradosz@gmail.com>
This commit is contained in:
Régis Hanol 2024-05-07 16:56:05 +02:00 committed by GitHub
parent 278eb0a1a5
commit 342328b622
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -135,12 +135,12 @@ RSpec.describe UploadCreator do
UploadCreator.new(file, filename, pasted: true, force_optimize: true).create_for(user.id)
# no optimisation possible without losing details
expect(upload.filesize).to eq(9202)
expect(upload.filesize).to be_between(1000, 9210)
thumbnail_size = upload.get_optimized_image(upload.width, upload.height, {}).filesize
# pngquant will lose some colors causing some extra size reduction
expect(thumbnail_size).to be < 7500
expect(thumbnail_size).to be_between(1000, 7500)
end
end