Fix for tax rate test
This commit is contained in:
parent
7ee4219480
commit
bc3096f800
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ class TaxRatesCest
|
|||
$total = $itemCost;
|
||||
$total += round($itemCost * $itemTaxRate / 100, 2);
|
||||
$total += round($itemCost * $invoiceTaxRate / 100, 2);
|
||||
$itemTaxRate = round($itemTaxRate, 2);
|
||||
$itemTaxRate = number_format($itemTaxRate, 2);
|
||||
|
||||
// create tax rates
|
||||
$I->amOnPage('/tax_rates/create');
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue