Skip to content

Commit

Permalink
Corrected unit test due to upgrade of ImageMagick.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Nov 28, 2024
1 parent 39d633f commit b7b2db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/coders/heic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('Coders#heic', () => {
it('should be able to write avif image', () => {
TestImages.Builtin.logo.use((image) => {
image.write(MagickFormat.Avif, data => {
expect(data.length).toBe(11353);
expect(data.length).toBe(11333);
ImageMagick.read(data, image => {
expect(image.format).toBe(MagickFormat.Avif);
});
Expand Down

0 comments on commit b7b2db5

Please sign in to comment.