diff --git a/setup/src/Magento/Setup/Model/PhpReadinessCheck.php b/setup/src/Magento/Setup/Model/PhpReadinessCheck.php index bcf942687a45a1f2d21824f15f3bac2d0b1bb9be..74b2afd1419c440977f2b10418964286eb738b39 100644 --- a/setup/src/Magento/Setup/Model/PhpReadinessCheck.php +++ b/setup/src/Magento/Setup/Model/PhpReadinessCheck.php @@ -328,7 +328,7 @@ class PhpReadinessCheck $requiredFunctions = [ [ 'name' => 'imagecreatefromjpeg', - 'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.', + 'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.', 'helpUrl' => 'http://php.net/manual/en/image.installation.php', ], ]; diff --git a/setup/src/Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php b/setup/src/Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php index 785674dbae390e656d6f119e9cfbd12ba15d8f6e..a77bd46c79f25495570070968ae62ebb0762ef34 100644 --- a/setup/src/Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php +++ b/setup/src/Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php @@ -223,7 +223,7 @@ class PhpReadinessCheckTest extends \PHPUnit_Framework_TestCase 'error' => false, ], 'missed_function_imagecreatefromjpeg' => [ - 'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.', + 'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.', 'helpUrl' => 'http://php.net/manual/en/image.installation.php', 'error' => false, ], @@ -268,7 +268,7 @@ class PhpReadinessCheckTest extends \PHPUnit_Framework_TestCase 'error' => true, ], 'missed_function_imagecreatefromjpeg' => [ - 'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.', + 'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.', 'helpUrl' => 'http://php.net/manual/en/image.installation.php', 'error' => false, ], @@ -313,7 +313,7 @@ class PhpReadinessCheckTest extends \PHPUnit_Framework_TestCase } $expected['data']['missed_function_imagecreatefromjpeg'] = [ - 'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.', + 'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.', 'helpUrl' => 'http://php.net/manual/en/image.installation.php', 'error' => false, ];