diff --git a/tests/Drivers/Gd/Modifiers/CropModifierTest.php b/tests/Drivers/Gd/Modifiers/CropModifierTest.php index 8f44df6d..f64e47ba 100644 --- a/tests/Drivers/Gd/Modifiers/CropModifierTest.php +++ b/tests/Drivers/Gd/Modifiers/CropModifierTest.php @@ -18,7 +18,6 @@ public function testModify(): void { $image = $this->createTestImage('blocks.png'); $image = $image->modify(new CropModifier(200, 200, 'bottom-right')); - $image->toPng()->save('./test.png'); $this->assertEquals(200, $image->getWidth()); $this->assertEquals(200, $image->getHeight()); $this->assertColor(255, 0, 0, 255, $image->pickColor(5, 5)); diff --git a/tests/Drivers/Imagick/Modifiers/CropModifierTest.php b/tests/Drivers/Imagick/Modifiers/CropModifierTest.php index 54f39212..86c8c6f6 100644 --- a/tests/Drivers/Imagick/Modifiers/CropModifierTest.php +++ b/tests/Drivers/Imagick/Modifiers/CropModifierTest.php @@ -18,7 +18,6 @@ public function testModify(): void { $image = $this->createTestImage('blocks.png'); $image = $image->modify(new CropModifier(200, 200, 'bottom-right')); - $image->toPng()->save('./test.png'); $this->assertEquals(200, $image->getWidth()); $this->assertEquals(200, $image->getHeight()); $this->assertColor(255, 0, 0, 255, $image->pickColor(5, 5));