File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 44ENDPOINT_CHECKOUT_TEST = "https://checkout-test.adyen.com"
55ENDPOINT_CHECKOUT_LIVE_SUFFIX = "https://{}-checkout-live" \
66 ".adyenpayments.com/checkout"
7- API_CHECKOUT_VERSION = "v41 "
7+ API_CHECKOUT_VERSION = "v49 "
88API_CHECKOUT_UTILITY_VERSION = "v1"
99API_RECURRING_VERSION = "v25"
10- API_PAYMENT_VERSION = "v40 "
10+ API_PAYMENT_VERSION = "v49 "
1111API_PAYOUT_VERSION = "v30"
1212LIB_VERSION = "2.0.0"
1313LIB_NAME = "adyen-python-api-library"
Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ def test_checkout_api_url_custom(self):
1717 url = self .adyen .client ._determine_checkout_url ("live" , "payments" )
1818 self .client .live_endpoint_prefix = "1797a841fbb37ca7-AdyenDemo"
1919 self .assertEqual (url , "https://1797a841fbb37ca7-AdyenDemo-checkout-"
20- "live.adyenpayments.com/checkout/v41 /payments" )
20+ "live.adyenpayments.com/checkout/v49 /payments" )
2121
2222 def test_checkout_api_url (self ):
2323 self .client .live_endpoint_prefix = None
2424 url = self .adyen .client ._determine_checkout_url ("test" ,
2525 "paymentsDetails" )
2626 self .assertEqual (url , "https://checkout-test.adyen.com"
27- "/v41 /payments/details" )
27+ "/v49 /payments/details" )
2828
2929 def test_payments_invalid_platform (self ):
3030
You can’t perform that action at this time.
0 commit comments