1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-19 20:21:32 +02:00
This commit is contained in:
Oliver Vogel
2021-11-27 19:19:52 +00:00
parent aaa31d81e7
commit fcee16c5e0

View File

@@ -15,8 +15,8 @@ class PlaceModifierTest extends TestCase
public function testColorChange(): void
{
$image = $this->createTestImage('test.jpg');
// $this->assertEquals('fdbd42', $image->pickColor(300, 25)->toHex());
$this->assertEquals('febc44', $image->pickColor(300, 25)->toHex());
$image->modify(new PlaceModifier(__DIR__ . '/../../../images/circle.png', 'top-right', 0, 0));
// $this->assertEquals('33260d', $image->pickColor(300, 25)->toHex());
$this->assertEquals('33260e', $image->pickColor(300, 25)->toHex());
}
}