use py3 compatible print syntax
This commit is contained in:
parent
7f36649763
commit
a6060dfb6d
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue