From 1da92cd38ae1fa4d717437079132ccaabf26fb0a Mon Sep 17 00:00:00 2001 From: Yorick Downe Date: Wed, 8 Oct 2025 17:53:26 +0100 Subject: [PATCH] Allow tests to work with click 8.3.0 --- tests/test_cli/test_partial_deposit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli/test_partial_deposit.py b/tests/test_cli/test_partial_deposit.py index a6eb1ed4..d81dbdb5 100644 --- a/tests/test_cli/test_partial_deposit.py +++ b/tests/test_cli/test_partial_deposit.py @@ -57,7 +57,7 @@ def test_partial_deposit(amount: str) -> None: runner = CliRunner() inputs = ['english', 'mainnet', password, amount, withdrawal_address, withdrawal_address, ''] - data = '\n'.join(inputs) + data = '\n'.join(inputs) + '\n' arguments = [ '--ignore_connectivity', 'partial-deposit',