From 4d58188da4c603086e1675fa1aee9ac3475f8332 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 4 Nov 2020 08:29:53 +1100 Subject: [PATCH] Refactor company gateway schema for required fields --- tests/Feature/CompanyGatewayResolutionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/CompanyGatewayResolutionTest.php b/tests/Feature/CompanyGatewayResolutionTest.php index f23aa02caa02..b06d7eebc638 100644 --- a/tests/Feature/CompanyGatewayResolutionTest.php +++ b/tests/Feature/CompanyGatewayResolutionTest.php @@ -102,7 +102,7 @@ class CompanyGatewayResolutionTest extends TestCase $this->cg->gateway_key = 'd14dd26a37cecc30fdd65700bfb55b23'; $this->cg->require_cvv = true; $this->cg->require_billing_address = true; - $this->cg->show_shipping_address = true; + $this->cg->require_shipping_address = true; $this->cg->update_details = true; $this->cg->config = encrypt(json_encode($json_config)); $this->cg->fees_and_limits = $data;