fix py3 print issue

This commit is contained in:
holger krekel
2010-04-26 18:57:08 +02:00
parent 9c74f59e55
commit bd254674f9

View File

@@ -164,7 +164,7 @@ class TestDistribution:
session.config.slaveoutput['s2'] = 42
def pytest_testnodedown(node, error):
assert node.slaveoutput['s2'] == 42
print "s2call-finished"
print ("s2call-finished")
""")
args = ["-n1"]
result = testdir.runpytest(*args)