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

timeout is not supported in python 2

parent e623f0d1
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(timeout=5)
retcode = proc.wait()
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