From bfe3262024434974d0ca438ddb4a66b111fd19f5 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 8 Mar 2016 22:05:56 +0200 Subject: [PATCH] Fix for tax test --- tests/acceptance/TaxRatesCest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/acceptance/TaxRatesCest.php b/tests/acceptance/TaxRatesCest.php index 209634de6fed..94951d8949fe 100644 --- a/tests/acceptance/TaxRatesCest.php +++ b/tests/acceptance/TaxRatesCest.php @@ -29,6 +29,7 @@ class TaxRatesCest $total = $itemCost; $total += round($itemCost * $itemTaxRate / 100, 2); $total += round($itemCost * $invoiceTaxRate / 100, 2); + $itemTaxRate = round($itemTaxRate, 2); // create tax rates $I->amOnPage('/tax_rates/create');