From d9a153d43d5aca6a3d62962c1c4184e81801186a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Tue, 22 Nov 2022 10:37:13 +0100 Subject: [PATCH] fix tests to low balance --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 1e719c76..458ce2b9 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -60,7 +60,7 @@ async def from_wallet(from_user): wallet = await create_wallet(user_id=user.id, wallet_name="test_wallet_from") await credit_wallet( wallet_id=wallet.id, - amount=99999999, + amount=999999999, ) yield wallet @@ -77,7 +77,7 @@ async def to_wallet(to_user): wallet = await create_wallet(user_id=user.id, wallet_name="test_wallet_to") await credit_wallet( wallet_id=wallet.id, - amount=99999999, + amount=999999999, ) yield wallet