@@ -30,7 +30,8 @@ class MsrpPriceCalculatorTest extends TestCase
30
30
public function testGetMsrpPriceValue ($ msrpPriceCalculators , $ productMock , $ expected )
31
31
{
32
32
$ objectManager = new ObjectManager ($ this );
33
- $ pricing = $ objectManager ->getObject (MsrpPriceCalculator::class,
33
+ $ pricing = $ objectManager ->getObject (
34
+ MsrpPriceCalculator::class,
34
35
[
35
36
'msrpPriceCalculators ' => $ msrpPriceCalculators
36
37
]
@@ -52,7 +53,9 @@ public function getMsrpPriceValueDataProvider()
52
53
[
53
54
'productType ' => GroupedType::TYPE_CODE ,
54
55
'priceCalculator ' => $ this ->createPriceCalculatorMock (
55
- MsrpGroupedCalculator::class, 23.50 )
56
+ MsrpGroupedCalculator::class,
57
+ 23.50
58
+ )
56
59
]
57
60
],
58
61
$ this ->createProductMock (GroupedType::TYPE_CODE , 0 ),
@@ -63,7 +66,9 @@ public function getMsrpPriceValueDataProvider()
63
66
[
64
67
'productType ' => GroupedType::TYPE_CODE ,
65
68
'priceCalculator ' => $ this ->createPriceCalculatorMock (
66
- MsrpGroupedCalculator::class, 0 )
69
+ MsrpGroupedCalculator::class,
70
+ 0
71
+ )
67
72
]
68
73
],
69
74
$ this ->createProductMock (Type::TYPE_SIMPLE , 24.88 ),
0 commit comments