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 4
4
ENDPOINT_CHECKOUT_TEST = "https://checkout-test.adyen.com"
5
5
ENDPOINT_CHECKOUT_LIVE_SUFFIX = "https://{}-checkout-live" \
6
6
".adyenpayments.com/checkout"
7
- API_CHECKOUT_VERSION = "v41 "
7
+ API_CHECKOUT_VERSION = "v49 "
8
8
API_CHECKOUT_UTILITY_VERSION = "v1"
9
9
API_RECURRING_VERSION = "v25"
10
- API_PAYMENT_VERSION = "v40 "
10
+ API_PAYMENT_VERSION = "v49 "
11
11
API_PAYOUT_VERSION = "v30"
12
12
LIB_VERSION = "2.0.0"
13
13
LIB_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):
17
17
url = self .adyen .client ._determine_checkout_url ("live" , "payments" )
18
18
self .client .live_endpoint_prefix = "1797a841fbb37ca7-AdyenDemo"
19
19
self .assertEqual (url , "https://1797a841fbb37ca7-AdyenDemo-checkout-"
20
- "live.adyenpayments.com/checkout/v41 /payments" )
20
+ "live.adyenpayments.com/checkout/v49 /payments" )
21
21
22
22
def test_checkout_api_url (self ):
23
23
self .client .live_endpoint_prefix = None
24
24
url = self .adyen .client ._determine_checkout_url ("test" ,
25
25
"paymentsDetails" )
26
26
self .assertEqual (url , "https://checkout-test.adyen.com"
27
- "/v41 /payments/details" )
27
+ "/v49 /payments/details" )
28
28
29
29
def test_payments_invalid_platform (self ):
30
30
You can’t perform that action at this time.
0 commit comments