diff --git a/tests/Unit/Drivers/Gd/Modifiers/DrawLineModifierTest.php b/tests/Unit/Drivers/Gd/Modifiers/DrawLineModifierTest.php index 903c50ee..85355e53 100644 --- a/tests/Unit/Drivers/Gd/Modifiers/DrawLineModifierTest.php +++ b/tests/Unit/Drivers/Gd/Modifiers/DrawLineModifierTest.php @@ -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)); } }