Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private static CardAccountDataInbound BuildCardAccountDataInbound() =>
new CardAccountDataInbound(
"5123456789012345",
"09",
"21",
"25",
"123");

private static BillingAddress BuildBillingAddress() =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private static CardAccountDataInbound buildCardAccountDataInbound() {
return new CardAccountDataInbound()
.accountNumber("5123456789012345")
.securityCode("123")
.expiryYear("21")
.expiryYear("25")
.expiryMonth("09");
}

Expand Down
2 changes: 1 addition & 1 deletion nodejs/test/api/TokenizeApi.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const forge = require("node-forge");
cardAccountData: {
accountNumber: "5123456789012345",
expiryMonth: "09",
expiryYear: "21",
expiryYear: "25",
securityCode: "123"
},
source: "ACCOUNT_ON_FILE"
Expand Down
2 changes: 1 addition & 1 deletion php/test/Api/TokenizeApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ static function buildCardAccountDataInbound(): CardAccountDataInbound
$data = [
'account_number' => '5123456789012345',
'security_code' => '123',
'expiry_year' => '21',
'expiry_year' => '25',
'expiry_month' => '09'
];
return new CardAccountDataInbound($data);
Expand Down
2 changes: 1 addition & 1 deletion python/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest~=4.6.7 # needed for python 2.7+3.4
pytest-cov>=2.8.1
pytest-randomly==1.2.3 # needed for python 2.7+3.4
mastercard-oauth1-signer >= 1.1.3
mastercard-oauth1-signer >= 1.4.0
mastercard-client-encryption >= 1.1.2
2 changes: 1 addition & 1 deletion python/test/test_tokenize_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def create_body(self):
"cardAccountData": {
"accountNumber": "5123456789012345",
"expiryMonth": "09",
"expiryYear": "21",
"expiryYear": "25",
"securityCode": "123"
},
"source": "ACCOUNT_ON_FILE"
Expand Down
2 changes: 1 addition & 1 deletion ruby/spec/api/tokenize_api_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def create_req
cardAccountData: {
accountNumber: "5123456789012345",
expiryMonth: "09",
expiryYear: "21",
expiryYear: "25",
securityCode: "123"
},
source: "ACCOUNT_ON_FILE"
Expand Down