diff --git a/tests/magick-image/motion-blur.spec.ts b/tests/magick-image/motion-blur.spec.ts index 1aa51859..534dc769 100644 --- a/tests/magick-image/motion-blur.spec.ts +++ b/tests/magick-image/motion-blur.spec.ts @@ -6,9 +6,9 @@ import { TestImages } from "../test-images"; describe('MagickImage#motionBlur', () => { it('should change pixels of the image', () => { TestImages.Builtin.logo.use((image) => { - image.motionBlur(100, 10, -90); + image.motionBlur(10, 10, -90); - expect(image).toHavePixelWithColor(222, 60, '#ff0d0dff'); + expect(image).toHavePixelWithColor(222, 60, '#ff0404ff'); }); }); });