Skip to content

Commit 19650aa

Browse files
Merge branch 'MAGETWO-56343' of https://github.com/magento-falcons/magento2ce into MAGETWO-57722
2 parents 9af6f5d + c84bb00 commit 19650aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup/src/Magento/Setup/Model/PhpReadinessCheck.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ private function checkFunctionsExistence()
328328
$requiredFunctions = [
329329
[
330330
'name' => 'imagecreatefromjpeg',
331-
'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.',
331+
'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.',
332332
'helpUrl' => 'http://php.net/manual/en/image.installation.php',
333333
],
334334
];

setup/src/Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public function testCheckPhpSettings()
223223
'error' => false,
224224
],
225225
'missed_function_imagecreatefromjpeg' => [
226-
'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.',
226+
'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.',
227227
'helpUrl' => 'http://php.net/manual/en/image.installation.php',
228228
'error' => false,
229229
],
@@ -268,7 +268,7 @@ public function testCheckPhpSettingsFailed()
268268
'error' => true,
269269
],
270270
'missed_function_imagecreatefromjpeg' => [
271-
'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.',
271+
'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.',
272272
'helpUrl' => 'http://php.net/manual/en/image.installation.php',
273273
'error' => false,
274274
],
@@ -313,7 +313,7 @@ public function testCheckPhpSettingsNoXDebug()
313313
}
314314

315315
$expected['data']['missed_function_imagecreatefromjpeg'] = [
316-
'message' => 'You must have installed GD library wuth --with-jpeg-dir=DIR option.',
316+
'message' => 'You must have installed GD library with --with-jpeg-dir=DIR option.',
317317
'helpUrl' => 'http://php.net/manual/en/image.installation.php',
318318
'error' => false,
319319
];

0 commit comments

Comments
 (0)