Skip to content

Commit ab32b0f

Browse files
authored
Update test-runner to limit debit amount
Cannot debit more than 100 from bank account
1 parent 86c9dd7 commit ab32b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-runner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public static function runCaptureFundsAuthorizedThroughAnotherChannel()
128128

129129
public static function runDebitBankAccount()
130130
{
131-
return debitBankAccount(self::getAmount());
131+
return debitBankAccount(self::getAmount()%98+1); //cannot debit more than 100
132132
}
133133

134134
public static function runChargeTokenizedCreditCard()

0 commit comments

Comments
 (0)