From 93a886db08fb84e209181ebeeb37b4826fc607a8 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 31 Aug 2020 17:51:33 +1000 Subject: [PATCH] fixes for tests --- tests/Feature/CompanyGatewayTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/CompanyGatewayTest.php b/tests/Feature/CompanyGatewayTest.php index 167433dda6e4..fa4bdfa7af1b 100644 --- a/tests/Feature/CompanyGatewayTest.php +++ b/tests/Feature/CompanyGatewayTest.php @@ -178,7 +178,7 @@ class CompanyGatewayTest extends TestCase $total = 10.93; $total_invoice_count = 5; - $total_gateway_fee = round($cg->calcGatewayFee($total),2); + $total_gateway_fee = round($cg->calcGatewayFee($total,true),2); $this->assertEquals(1.58, $total_gateway_fee);