Skip to content

Commit 5ac00d1

Browse files
committed
phpcs fix
1 parent 1666ce8 commit 5ac00d1

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductTierPriceManagementTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99

1010
use Magento\TestFramework\TestCase\WebapiAbstract;
1111

12+
/**
13+
* Class ProductTierPriceManagementTest
14+
*
15+
* @package Magento\Catalog\Api
16+
*/
1217
class ProductTierPriceManagementTest extends WebapiAbstract
1318
{
1419
const SERVICE_NAME = 'catalogProductTierPriceManagementV1';

dev/tests/integration/testsuite/Magento/GroupedProduct/Pricing/Price/FinalPriceTest.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ public function testFinalPriceWithTierPrice()
4141

4242
/** @var $simpleProduct \Magento\Catalog\Api\Data\ProductInterface */
4343
$simpleProduct = $productRepository->get('simple');
44-
$simpleProduct->setTierPrices([
45-
$tierPrice
46-
]);
44+
$simpleProduct->setTierPrices(
45+
[
46+
$tierPrice
47+
]
48+
);
4749
$productRepository->save($simpleProduct);
4850

4951
/** @var $product \Magento\Catalog\Model\Product */

0 commit comments

Comments
 (0)