From e623f0d10054e14ac1ff8e4c7244054913d3705f Mon Sep 17 00:00:00 2001
From: Stefano Borini <sborini@enthought.com>
Date: Wed, 26 Jul 2017 11:09:18 +0100
Subject: [PATCH] Timeout keyword to wait()

---
 force_bdss/cli/tests/test_execution.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/force_bdss/cli/tests/test_execution.py b/force_bdss/cli/tests/test_execution.py
index 121f266..fdb30f6 100644
--- a/force_bdss/cli/tests/test_execution.py
+++ b/force_bdss/cli/tests/test_execution.py
@@ -35,7 +35,7 @@ class TestExecution(unittest.TestCase):
                 stdin=subprocess.PIPE,
                 stdout=subprocess.PIPE)
             proc.communicate(b"1")
-            retcode = proc.wait(5)
+            retcode = proc.wait(timeout=5)
             self.assertEqual(retcode, 0)
 
     def test_unsupported_file_input(self):
-- 
GitLab