Skip to content

Commit 9203d32

Browse files
committed
Fix typos in variable name
1 parent a18364e commit 9203d32

File tree

1 file changed

+3
-3
lines changed
  • app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Listing/Collector

1 file changed

+3
-3
lines changed

app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Listing/Collector/MsrpPriceTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function testCollect()
9797
$productRenderInfoDto->expects($this->once())
9898
->method('getPriceInfo')
9999
->willReturn($productPriceInfo);
100-
$extensionAttirbutes = $this->getMockBuilder(
100+
$extensionAttributes = $this->getMockBuilder(
101101
\Magento\Catalog\Api\Data\ProductRender\PriceInfoExtensionInterface::class
102102
)
103103
->setMethods(['setMsrp'])
@@ -113,14 +113,14 @@ public function testCollect()
113113
$this->adjustmentCalculator->expects($this->once())
114114
->method('getAmount')
115115
->willReturn($amountInterface);
116-
$extensionAttirbutes->expects($this->once())
116+
$extensionAttributes->expects($this->once())
117117
->method('setMsrp');
118118
$this->msrpPriceInfoFactory->expects($this->once())
119119
->method('create')
120120
->willReturn($priceInfo);
121121
$this->priceInfoExtensionFactory->expects($this->once())
122122
->method('create')
123-
->willReturn($extensionAttirbutes);
123+
->willReturn($extensionAttributes);
124124
$price = $this->getMockBuilder(\Magento\Msrp\Pricing\Price\MsrpPrice::class)
125125
->disableOriginalConstructor()
126126
->getMock();

0 commit comments

Comments
 (0)