Skip to content
Snippets Groups Projects
Commit e623f0d1 authored by Stefano Borini's avatar Stefano Borini
Browse files

Timeout keyword to wait()

parent 21f835b6
No related branches found
No related tags found
1 merge request!45Added support for MCO named parameters.
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment