diff --git a/src/Entity/Payment.php b/src/Entity/Payment.php index 159433f..9a96cb3 100644 --- a/src/Entity/Payment.php +++ b/src/Entity/Payment.php @@ -45,7 +45,7 @@ class Payment 'url_cancelled' => '', 'url_pending' => '', 'chargeUnregulatedCardFees' => false, - 'enableApplePayGooglePay' => false, + 'enableApplePayGooglePay' => true, 'prepareOnly' => true, 'embedded' => false, 'allowedMethods' => [], diff --git a/tests/Integration/Entity/Request/PaymentCreateRequestCest.php b/tests/Integration/Entity/Request/PaymentCreateRequestCest.php index 881ed01..d2c0f85 100644 --- a/tests/Integration/Entity/Request/PaymentCreateRequestCest.php +++ b/tests/Integration/Entity/Request/PaymentCreateRequestCest.php @@ -61,7 +61,7 @@ protected function getPaymentScenarios(){ 'url_cancelled' => '', 'url_pending' => '', 'chargeUnregulatedCardFees' => 'false', - 'enableApplePayGooglePay' => 'false', + 'enableApplePayGooglePay' => 'true', 'initRecurringId' => '', ], @@ -114,7 +114,7 @@ protected function getPaymentScenarios(){ 'url_cancelled' => '', 'url_pending' => '', 'chargeUnregulatedCardFees' => 'false', - 'enableApplePayGooglePay' => 'false', + 'enableApplePayGooglePay' => 'true', 'country' => '', 'curr' => '', 'label' => '', diff --git a/tests/Unit/Entity/PaymentCest.php b/tests/Unit/Entity/PaymentCest.php index bbaa405..b4ff48e 100644 --- a/tests/Unit/Entity/PaymentCest.php +++ b/tests/Unit/Entity/PaymentCest.php @@ -71,7 +71,7 @@ public function getParamsTest(UnitTester $I) 'url_cancelled' => '', 'url_pending' => '', 'chargeUnregulatedCardFees' => false, - 'enableApplePayGooglePay' => false, + 'enableApplePayGooglePay' => true, 'initRecurringId' => '', ], $paymentParams);