From 34b8490a2d1b23060abee13085269791cee4f326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Tue, 20 May 2025 10:25:08 +0200 Subject: [PATCH] test: conftest smaller funding amounts (#3167) --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 37af06e55..e45afab11 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -130,7 +130,7 @@ async def from_wallet(from_user): wallet = await create_wallet(user_id=user.id, wallet_name="test_wallet_from") await update_wallet_balance( wallet=wallet, - amount=999999999, + amount=9999999, ) yield wallet @@ -174,7 +174,7 @@ async def to_wallet(to_user): wallet = await create_wallet(user_id=user.id, wallet_name="test_wallet_to") await update_wallet_balance( wallet=wallet, - amount=999999999, + amount=9999999, ) yield wallet