Skip to content

Commit 4a8bf56

Browse files
authored
Merge branch 'main' into version_521
2 parents 383cbeb + c3419f3 commit 4a8bf56

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

csharp/Acme.App.MastercardApi.Client.Tests/TokenizeApiTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private static CardAccountDataInbound BuildCardAccountDataInbound() =>
111111
new CardAccountDataInbound(
112112
"5123456789012345",
113113
"09",
114-
"21",
114+
"25",
115115
"123");
116116

117117
private static BillingAddress BuildBillingAddress() =>

java/src/test/java/com/mastercard/developer/mdes_digital_enablement_client/api/TokenizeApiTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ private static CardAccountDataInbound buildCardAccountDataInbound() {
115115
return new CardAccountDataInbound()
116116
.accountNumber("5123456789012345")
117117
.securityCode("123")
118-
.expiryYear("21")
118+
.expiryYear("25")
119119
.expiryMonth("09");
120120
}
121121

nodejs/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/test/api/TokenizeApi.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ const forge = require("node-forge");
165165
cardAccountData: {
166166
accountNumber: "5123456789012345",
167167
expiryMonth: "09",
168-
expiryYear: "21",
168+
expiryYear: "25",
169169
securityCode: "123"
170170
},
171171
source: "ACCOUNT_ON_FILE"

php/test/Api/TokenizeApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ static function buildCardAccountDataInbound(): CardAccountDataInbound
203203
$data = [
204204
'account_number' => '5123456789012345',
205205
'security_code' => '123',
206-
'expiry_year' => '21',
206+
'expiry_year' => '25',
207207
'expiry_month' => '09'
208208
];
209209
return new CardAccountDataInbound($data);

python/test/test_tokenize_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def create_body_schema():
9090
card_account_data=CardAccountDataInbound(
9191
account_number="5123456789012345",
9292
expiry_month="09",
93-
expiry_year="21",
93+
expiry_year="25",
9494
security_code="123",
9595
),
9696
source="ACCOUNT_ON_FILE",
@@ -119,7 +119,7 @@ def create_body_dict(self):
119119
"card_account_data": {
120120
"account_number": "5123456789012345",
121121
"expiry_month": "09",
122-
"expiry_year": "21",
122+
"expiry_year": "25",
123123
"security_code": "123"
124124
},
125125
"source": "ACCOUNT_ON_FILE"

ruby/spec/api/tokenize_api_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def create_req
6363
cardAccountData: {
6464
accountNumber: "5123456789012345",
6565
expiryMonth: "09",
66-
expiryYear: "21",
66+
expiryYear: "25",
6767
securityCode: "123"
6868
},
6969
source: "ACCOUNT_ON_FILE"

0 commit comments

Comments
 (0)