Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
olivervogel committed May 5, 2024
1 parent 033d12e commit 31fb728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/Drivers/Gd/Modifiers/DrawLineModifierTest.php
Expand Up @@ -33,6 +33,6 @@ public function testApplyTransparent(): void
$line = new Line(new Point(0, 5), new Point(10, 5), 4);
$line->setBackgroundColor('fff4');
$image->modify(new DrawLineModifier($line));
$this->assertColor(255, 136, 77, 255, $image->pickColor(5, 5));
$this->assertColor(255, 129, 66, 255, $image->pickColor(5, 5));
}
}

0 comments on commit 31fb728

Please sign in to comment.