use py3 compatible print syntax

This commit is contained in:
Benjamin Peterson 2012-08-28 16:37:43 -04:00
parent 7f36649763
commit a6060dfb6d
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class TestPython:
import pytest
@pytest.mark.parametrize('arg1', "<&'", ids="<&'")
def test_func(arg1):
print arg1
print(arg1)
assert 0
""")
result, dom = runandparse(testdir)