diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php index 3b3adabdfbc2b9009ae6a54f6476084f7e3a806f..0696faaa9343593ec21d5108a3ccd5c8e98f1850 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php @@ -51,7 +51,11 @@ class TypeTest extends \PHPUnit_Framework_TestCase ]; $expect = [ ['value' => '', 'label' => __('-- Please select --')], - ['label' => 'optionLabel', 'optgroup-name' => 'optionLabel', 'value' => [['label' => 'typeLabel', 'value' => 'typeName']]], + [ + 'label' => 'optionLabel', + 'optgroup-name' => 'optionLabel', + 'value' => [['label' => 'typeLabel', 'value' => 'typeName']] + ], ]; $this->productOptionConfig->expects($this->any())->method('getAll')->will($this->returnValue($allOptions));