1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-29 08:40:33 +02:00
This commit is contained in:
Oliver Vogel
2024-05-05 13:18:03 +02:00
parent 033d12e807
commit 31fb728c14

View File

@@ -33,6 +33,6 @@ final class DrawLineModifierTest extends GdTestCase
$line = new Line(new Point(0, 5), new Point(10, 5), 4); $line = new Line(new Point(0, 5), new Point(10, 5), 4);
$line->setBackgroundColor('fff4'); $line->setBackgroundColor('fff4');
$image->modify(new DrawLineModifier($line)); $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));
} }
} }