Skip to content

Commit

Permalink
Adding number format to getAmountIncludingTax in test (#1715)
Browse files Browse the repository at this point in the history
* Adding number format to getAmountIncludingTax in test

* Apply number format on getTaxAmount
  • Loading branch information
acampos1916 committed Sep 19, 2022
1 parent a5f3ee2 commit 4e3ebd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Test/Unit/Helper/ChargedCurrencyTest.php
Expand Up @@ -429,7 +429,7 @@ public function testGetQuoteItemAmountCurrency(
$result->getAmount(),
$result->getCurrencyCode(),
$result->getDiscountAmount(),
$result->getTaxAmount(),
number_format($result->getTaxAmount(), 2, '.', ','),
$result->getAmountIncludingTax()
]
);
Expand Down

0 comments on commit 4e3ebd6

Please sign in to comment.