Fixes for tests

This commit is contained in:
David Bomba 2022-09-15 17:56:11 +10:00
parent b6b36c89fd
commit 7a15afa827

View File

@ -233,6 +233,6 @@ class CompanyGatewayResolutionTest extends TestCase
$this->cg->save();
$fee = $this->cg->calcGatewayFee(89, GatewayType::CREDIT_CARD, false);
$this->assertEquals(1.89, $fee);
$this->assertEquals(1.89, round($fee,2));
}
}