From 4f3d0f8b4df3c2997c0c579fe915d1031a123d87 Mon Sep 17 00:00:00 2001 From: "jai.s" Date: Wed, 14 Oct 2020 17:26:05 +0530 Subject: [PATCH] Increased time in TestProcessShutdown's test_shutdown method --- src/tests/test_process.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/test_process.py b/src/tests/test_process.py index 8fbc7e04..fc49be20 100755 --- a/src/tests/test_process.py +++ b/src/tests/test_process.py @@ -143,8 +143,8 @@ class TestProcessShutdown(TestProcessProto): """Send to pybitmessage SIGTERM and ensure it stopped""" # longer wait time because it's not a benchmark self.assertTrue( - self._stop_process(20), - '%s has not stopped in 20 sec' % ' '.join(self._process_cmd)) + self._stop_process(120), + '%s has not stopped in 120 sec' % ' '.join(self._process_cmd)) @classmethod def tearDownClass(cls):