Skip to content

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
olivervogel committed Oct 24, 2023
1 parent 49a2e8a commit 4cbb0de
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion tests/Drivers/Gd/Modifiers/CropModifierTest.php
Expand Up @@ -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));
Expand Down
1 change: 0 additions & 1 deletion tests/Drivers/Imagick/Modifiers/CropModifierTest.php
Expand Up @@ -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));
Expand Down

0 comments on commit 4cbb0de

Please sign in to comment.