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): ...@@ -743,9 +743,9 @@ class EndToEndTest(unittest.TestCase):
out, err = p.communicate() out, err = p.communicate()
res = p.returncode res = p.returncode
if res != 0: if res != 0:
print command print(command)
print out print(out)
print err print(err)
else: else:
res = os.system(command) res = os.system(command)
self.assertEqual(0, res, "non-zero exit status") 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