Commit 0adf38e0 authored by Stefan Behnel's avatar Stefan Behnel

Py3 fix in test runner

parent e0c95ad2
......@@ -743,9 +743,9 @@ class EndToEndTest(unittest.TestCase):
out, err = p.communicate()
res = p.returncode
if res != 0:
print command
print out
print err
print(command)
print(out)
print(err)
else:
res = os.system(command)
self.assertEqual(0, res, "non-zero exit status")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment