Skip to content

Commit fb7aa9c

Browse files
committed
fix static test
1 parent 6ac1098 commit fb7aa9c

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

app/code/Magento/Msrp/Test/Unit/Pricing/MsrpPriceCalculatorTest.php

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ class MsrpPriceCalculatorTest extends TestCase
3030
public function testGetMsrpPriceValue($msrpPriceCalculators, $productMock, $expected)
3131
{
3232
$objectManager = new ObjectManager($this);
33-
$pricing = $objectManager->getObject(MsrpPriceCalculator::class,
33+
$pricing = $objectManager->getObject(
34+
MsrpPriceCalculator::class,
3435
[
3536
'msrpPriceCalculators' => $msrpPriceCalculators
3637
]
@@ -52,7 +53,9 @@ public function getMsrpPriceValueDataProvider()
5253
[
5354
'productType' => GroupedType::TYPE_CODE,
5455
'priceCalculator' => $this->createPriceCalculatorMock(
55-
MsrpGroupedCalculator::class, 23.50)
56+
MsrpGroupedCalculator::class,
57+
23.50
58+
)
5659
]
5760
],
5861
$this->createProductMock(GroupedType::TYPE_CODE, 0),
@@ -63,7 +66,9 @@ public function getMsrpPriceValueDataProvider()
6366
[
6467
'productType' => GroupedType::TYPE_CODE,
6568
'priceCalculator' => $this->createPriceCalculatorMock(
66-
MsrpGroupedCalculator::class, 0)
69+
MsrpGroupedCalculator::class,
70+
0
71+
)
6772
]
6873
],
6974
$this->createProductMock(Type::TYPE_SIMPLE, 24.88),

0 commit comments

Comments
 (0)