diff --git a/tests/Colors/Cmyk/ColorTest.php b/tests/Colors/Cmyk/ColorTest.php index 42a386f1..d6c6e67e 100644 --- a/tests/Colors/Cmyk/ColorTest.php +++ b/tests/Colors/Cmyk/ColorTest.php @@ -8,7 +8,7 @@ use Intervention\Image\Colors\Cmyk\Channels\Cyan; use Intervention\Image\Colors\Cmyk\Channels\Key; use Intervention\Image\Colors\Cmyk\Channels\Magenta; use Intervention\Image\Colors\Cmyk\Channels\Yellow; -use Intervention\Image\Colors\Cmyk\Color as Color; +use Intervention\Image\Colors\Cmyk\Color; use Intervention\Image\Colors\Cmyk\Colorspace; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Tests\TestCase; diff --git a/tests/Colors/Hsv/ColorTest.php b/tests/Colors/Hsv/ColorTest.php index 08f1c746..fe602aa1 100644 --- a/tests/Colors/Hsv/ColorTest.php +++ b/tests/Colors/Hsv/ColorTest.php @@ -7,7 +7,7 @@ namespace Intervention\Image\Tests\Colors\Hsv; use Intervention\Image\Colors\Hsv\Channels\Hue; use Intervention\Image\Colors\Hsv\Channels\Saturation; use Intervention\Image\Colors\Hsv\Channels\Value; -use Intervention\Image\Colors\Hsv\Color as Color; +use Intervention\Image\Colors\Hsv\Color; use Intervention\Image\Colors\Hsv\Colorspace; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Tests\TestCase; diff --git a/tests/Colors/Rgb/ColorTest.php b/tests/Colors/Rgb/ColorTest.php index bda8d459..d6eb9319 100644 --- a/tests/Colors/Rgb/ColorTest.php +++ b/tests/Colors/Rgb/ColorTest.php @@ -9,7 +9,7 @@ use Intervention\Image\Colors\Cmyk\Colorspace as CmykColorspace; use Intervention\Image\Colors\Rgb\Channels\Red; use Intervention\Image\Colors\Rgb\Channels\Green; use Intervention\Image\Colors\Rgb\Channels\Blue; -use Intervention\Image\Colors\Rgb\Color as Color; +use Intervention\Image\Colors\Rgb\Color; use Intervention\Image\Colors\Rgb\Colorspace as RgbColorspace; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Tests\TestCase;