Skip to content

Commit ca26c81

Browse files
committed
testing travis build
1 parent 26019f2 commit ca26c81

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

PaymentTransactions/credit-bank-account.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ function creditBankAccount(transactionId, callback) {
1515
var bankAccountType = new ApiContracts.BankAccountType();
1616
bankAccountType.setAccountType(ApiContracts.BankAccountTypeEnum.SAVINGS);
1717
bankAccountType.setRoutingNumber('121042882');
18+
//added code
1819
var bankAccountNum = Math.floor(Math.random() * 9999999999) + 10000;
1920
bankAccountType.setAccountNumber(bankAccountNum.toString());
2021
bankAccountType.setNameOnAccount('John Doe');

PaymentTransactions/debit-bank-account.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ function debitBankAccount(callback) {
1313
var bankAccountType = new ApiContracts.BankAccountType();
1414
bankAccountType.setAccountType(ApiContracts.BankAccountTypeEnum.SAVINGS);
1515
bankAccountType.setRoutingNumber('121042882');
16+
//added code
1617
var bankAccountNum = Math.floor(Math.random() * 9999999999) + 10000;
1718
bankAccountType.setAccountNumber(bankAccountNum.toString());
1819
bankAccountType.setNameOnAccount('John Doe');

0 commit comments

Comments
 (0)