File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Listing/Collector Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ public function testCollect()
97
97
$ productRenderInfoDto ->expects ($ this ->once ())
98
98
->method ('getPriceInfo ' )
99
99
->willReturn ($ productPriceInfo );
100
- $ extensionAttirbutes = $ this ->getMockBuilder (
100
+ $ extensionAttributes = $ this ->getMockBuilder (
101
101
\Magento \Catalog \Api \Data \ProductRender \PriceInfoExtensionInterface::class
102
102
)
103
103
->setMethods (['setMsrp ' ])
@@ -113,14 +113,14 @@ public function testCollect()
113
113
$ this ->adjustmentCalculator ->expects ($ this ->once ())
114
114
->method ('getAmount ' )
115
115
->willReturn ($ amountInterface );
116
- $ extensionAttirbutes ->expects ($ this ->once ())
116
+ $ extensionAttributes ->expects ($ this ->once ())
117
117
->method ('setMsrp ' );
118
118
$ this ->msrpPriceInfoFactory ->expects ($ this ->once ())
119
119
->method ('create ' )
120
120
->willReturn ($ priceInfo );
121
121
$ this ->priceInfoExtensionFactory ->expects ($ this ->once ())
122
122
->method ('create ' )
123
- ->willReturn ($ extensionAttirbutes );
123
+ ->willReturn ($ extensionAttributes );
124
124
$ price = $ this ->getMockBuilder (\Magento \Msrp \Pricing \Price \MsrpPrice::class)
125
125
->disableOriginalConstructor ()
126
126
->getMock ();
You can’t perform that action at this time.
0 commit comments