Skip to content

Commit 18cd050

Browse files
committed
switch routing number to get tests working
1 parent 2fef4a1 commit 18cd050

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PaymentTransactions/credit-bank-account.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def credit_bank_account():
1818
bankAccountType = apicontractsv1.bankAccountType()
1919
accountType = apicontractsv1.bankAccountTypeEnum
2020
bankAccountType.accountType = accountType.checking
21-
bankAccountType.routingNumber = "125000024"
21+
bankAccountType.routingNumber = "121042882"
2222
bankAccountType.accountNumber = "12345678"
2323
bankAccountType.nameOnAccount = "John Doe"
2424

PaymentTransactions/debit-bank-account.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def debit_bank_account():
2323
bankAccountType = apicontractsv1.bankAccountType()
2424
accountType = apicontractsv1.bankAccountTypeEnum
2525
bankAccountType.accountType = accountType.checking
26-
bankAccountType.routingNumber = "125000024"
26+
bankAccountType.routingNumber = "121042882"
2727
bankAccountType.accountNumber = "12345678"
2828
bankAccountType.nameOnAccount = "John Doe"
2929

@@ -70,4 +70,4 @@ def debit_bank_account():
7070
return response
7171

7272
if(os.path.basename(__file__) == os.path.basename(sys.argv[0])):
73-
debit_bank_account()
73+
debit_bank_account()

0 commit comments

Comments
 (0)