Skip to content

Commit b8dc6bf

Browse files
committed
AC-15385::Wrong product price is displayed on the shopping cart with different currencies in different store views
1 parent a5611a7 commit b8dc6bf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/CommonTaxCollectorTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -455,12 +455,12 @@ public function testMapItemSetsExtensionAttributePriceForTaxCalculation(): void
455455
private $price;
456456

457457
/**
458-
* @param float|null $value
458+
* @param float|null $priceForTaxCalculation
459459
* @return $this
460460
*/
461-
public function setPriceForTaxCalculation($value)
461+
public function setPriceForTaxCalculation($priceForTaxCalculation)
462462
{
463-
$this->price = $value;
463+
$this->price = $priceForTaxCalculation;
464464
return $this;
465465
}
466466

@@ -1308,12 +1308,12 @@ public function testConstructorFallsBackToObjectManagerForOptionalDependencies()
13081308
private $price;
13091309

13101310
/**
1311-
* @param float|null $value
1311+
* @param float|null $priceForTaxCalculation
13121312
* @return $this
13131313
*/
1314-
public function setPriceForTaxCalculation($value)
1314+
public function setPriceForTaxCalculation($priceForTaxCalculation)
13151315
{
1316-
$this->price = $value;
1316+
$this->price = $priceForTaxCalculation;
13171317
return $this;
13181318
}
13191319

0 commit comments

Comments
 (0)