From b20bccdcba0540f8736ca33a68c801a486321c77 Mon Sep 17 00:00:00 2001 From: Iulian Masar Date: Mon, 3 Feb 2025 18:18:28 +0200 Subject: [PATCH] updated test wallet amounts --- src/test/java/com/mangopay/core/BaseTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/com/mangopay/core/BaseTest.java b/src/test/java/com/mangopay/core/BaseTest.java index d44da674..04e3d97f 100644 --- a/src/test/java/com/mangopay/core/BaseTest.java +++ b/src/test/java/com/mangopay/core/BaseTest.java @@ -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); } /** @@ -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);