Skip to content

Commit 5f44c5c

Browse files
author
Yu Tang
committed
MAGETWO-43291: Incl tax prices on Product and catalog pages include tax on FPT
- Fix static test failure
1 parent ff2c965 commit 5f44c5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/code/Magento/Weee/Pricing/Render/Adjustment.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,9 @@ public function renderWeeeTaxAttribute(\Magento\Framework\DataObject $attribute)
162162
*/
163163
public function renderWeeeTaxAttributeWithTax(\Magento\Framework\DataObject $attribute)
164164
{
165-
return $this->convertAndFormatCurrency($attribute->getData('amount_excl_tax') + $attribute->getData('tax_amount'));
165+
return $this->convertAndFormatCurrency(
166+
$attribute->getData('amount_excl_tax') + $attribute->getData('tax_amount')
167+
);
166168
}
167169

168170
/**

0 commit comments

Comments
 (0)