From 73dd0edc5150a53585e293d30f1d37781f9caa3a Mon Sep 17 00:00:00 2001 From: Nattharat Wiriyakulnan Date: Tue, 9 Mar 2021 18:58:52 +0700 Subject: [PATCH] fix test --- helpers/pyband/tests/client/send_tx_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helpers/pyband/tests/client/send_tx_test.py b/helpers/pyband/tests/client/send_tx_test.py index a110f87a09..d8993caa37 100644 --- a/helpers/pyband/tests/client/send_tx_test.py +++ b/helpers/pyband/tests/client/send_tx_test.py @@ -69,8 +69,9 @@ ], } +TIMEOUT = 3 -client = Client(TEST_RPC, 3) +client = Client(TEST_RPC, TIMEOUT) @patch("requests.post")