From 151805121c44e91be85ca2a03dfa6dcd35827e3d Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sun, 29 Mar 2020 20:00:23 -0400 Subject: [PATCH] increase wallet server payment test timeout --- tests/integration/blockchain/test_wallet_server_sessions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/blockchain/test_wallet_server_sessions.py b/tests/integration/blockchain/test_wallet_server_sessions.py index f0887ead0..355f98762 100644 --- a/tests/integration/blockchain/test_wallet_server_sessions.py +++ b/tests/integration/blockchain/test_wallet_server_sessions.py @@ -81,7 +81,7 @@ class TestUsagePayment(CommandTestCase): self.assertEqual(features["payment_address"], address) self.assertEqual(features["daily_fee"], "1.1") with self.assertRaises(ServerPaymentFeeAboveMaxAllowedError): - await asyncio.wait_for(wallet_pay_service.on_payment.first, timeout=3) + await asyncio.wait_for(wallet_pay_service.on_payment.first, timeout=8) await node.stop(False) await node.start(self.blockchain, extraconf={"PAYMENT_ADDRESS": address, "DAILY_FEE": "1.0"})