Skip to content

Commit

Permalink
Patched unit tests due to changes in ImageMagick.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Aug 4, 2024
1 parent 252bfd6 commit 2c05c45
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(11389);
expect(data.length).toBe(11353);
ImageMagick.read(data, image => {
expect(image.format).toBe(MagickFormat.Avif);
});
Expand Down

0 comments on commit 2c05c45

Please sign in to comment.