From 7b79c3b1de09d017cf5323c63de4cddaf661d7ee Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Sat, 31 May 2025 09:59:19 +0200 Subject: [PATCH] Fix bug --- tests/Unit/Drivers/Gd/Encoders/GifEncoderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Drivers/Gd/Encoders/GifEncoderTest.php b/tests/Unit/Drivers/Gd/Encoders/GifEncoderTest.php index 6a950859..ba3c61fb 100644 --- a/tests/Unit/Drivers/Gd/Encoders/GifEncoderTest.php +++ b/tests/Unit/Drivers/Gd/Encoders/GifEncoderTest.php @@ -40,7 +40,7 @@ final class GifEncoderTest extends GdTestCase public function testEncodeInterlacedAnimation(): void { - $image = $this->createTestAnimation(3, 2); + $image = $this->createTestAnimation(); $encoder = new GifEncoder(interlaced: true); $result = $encoder->encode($image); $this->assertMediaType('image/gif', $result);