Skip to content

Commit b7b2db5

Browse files
committed
Corrected unit test due to upgrade of ImageMagick.
1 parent 39d633f commit b7b2db5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/coders/heic.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('Coders#heic', () => {
1111
it('should be able to write avif image', () => {
1212
TestImages.Builtin.logo.use((image) => {
1313
image.write(MagickFormat.Avif, data => {
14-
expect(data.length).toBe(11353);
14+
expect(data.length).toBe(11333);
1515
ImageMagick.read(data, image => {
1616
expect(image.format).toBe(MagickFormat.Avif);
1717
});

0 commit comments

Comments
 (0)