Skip to content

Commit

Permalink
updated test wallet amounts
Browse files Browse the repository at this point in the history
  • Loading branch information
Iulian Masar committed Feb 3, 2025
1 parent a51a17f commit b20bccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/mangopay/core/BaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ protected Wallet getJohnsWallet() throws Exception {
* @return Wallet instance loaded with 10k EUR.
*/
protected Wallet getJohnsWalletWithMoney() throws Exception {
return getJohnsWalletWithMoney(500);
return getJohnsWalletWithMoney(1000);
}

/**
Expand Down Expand Up @@ -1914,7 +1914,7 @@ protected ConversionQuote createConversionQuote() throws Exception {

Money debitedFunds = new Money();
debitedFunds.setCurrency(CurrencyIso.EUR);
debitedFunds.setAmount(50);
debitedFunds.setAmount(1);
conversionQuote.setDebitedFunds(debitedFunds);

conversionQuote.setDuration(300);
Expand Down

0 comments on commit b20bccd

Please sign in to comment.