Skip to content

Commit e912377

Browse files
authored
Merge branch 'master' into future
2 parents 591f030 + 8aa7b73 commit e912377

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

CustomerProfiles/update-customer-payment-profile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function updateCustomerPaymentProfile(customerProfileId, customerPaymentProfileI
1212

1313
var creditCardForUpdate = new ApiContracts.CreditCardType();
1414
creditCardForUpdate.setCardNumber('4111111111111111');
15-
creditCardForUpdate.setExpirationDate('2023-12');
15+
creditCardForUpdate.setExpirationDate('2035-12');
1616

1717
var paymentType = new ApiContracts.PaymentType();
1818
paymentType.setCreditCard(creditCardForUpdate);

CustomerProfiles/update-customer-shipping-address.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function updateCustomerShippingAddress(customerProfileId, customerAddressId, cal
1212

1313
var creditCardForUpdate = new ApiContracts.CreditCardType();
1414
creditCardForUpdate.setCardNumber('4111111111111111');
15-
creditCardForUpdate.setExpirationDate('2023-12');
15+
creditCardForUpdate.setExpirationDate('2035-12');
1616

1717
var paymentType = new ApiContracts.PaymentType();
1818
paymentType.setCreditCard(creditCardForUpdate);

PaymentTransactions/charge-tokenized-credit-card.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ function chargeTokenizedCreditCard(callback) {
1313
var creditCard = new ApiContracts.CreditCardType();
1414
creditCard.setCardNumber('4242424242424242');
1515
creditCard.setExpirationDate('0842');
16+
1617
// Set the token specific info
1718
creditCard.setIsPaymentToken(true);
1819
creditCard.setCryptogram('EjRWeJASNFZ4kBI0VniQEjRWeJA=');

PaymentTransactions/create-chase-pay-transaction.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ function createChasePayTransaction(callback) {
1414
creditCard.setCardNumber('4242424242424242');
1515
creditCard.setExpirationDate('0842');
1616
creditCard.setCardCode('999');
17+
1718
// Set the token specific info
1819
creditCard.setIsPaymentToken(true);
1920
creditCard.setCryptogram('EjRWeJASNFZ4kBI0VniQEjRWeJA=');

RecurringBilling/create-subscription.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function createSubscription(callback) {
2121
paymentScheduleType.setTrialOccurrences(0);
2222

2323
var creditCard = new ApiContracts.CreditCardType();
24-
creditCard.setExpirationDate('2038-12');
24+
creditCard.setExpirationDate('2035-12');
2525
creditCard.setCardNumber('4111111111111111');
2626

2727
var payment = new ApiContracts.PaymentType();

0 commit comments

Comments
 (0)