tests: test_pdb: fix print statements

This commit is contained in:
Daniel Hahler 2018-10-13 16:42:33 +02:00
parent 27d2683a02
commit d3d8d53e41
1 changed files with 7 additions and 7 deletions

View File

@ -345,7 +345,7 @@ class TestPDB(object):
import pytest import pytest
def test_1(): def test_1():
i = 0 i = 0
print ("hello17") print("hello17")
pytest.set_trace() pytest.set_trace()
x = 3 x = 3
""" """
@ -383,7 +383,7 @@ class TestPDB(object):
""" """
import pytest import pytest
def test_1(capsys): def test_1(capsys):
print ("hello1") print("hello1")
pytest.set_trace() pytest.set_trace()
""" """
) )
@ -420,7 +420,7 @@ class TestPDB(object):
def test_1(): def test_1():
pdb.set_trace() pdb.set_trace()
def test_2(): def test_2():
print ("hello") print("hello")
assert 0 assert 0
""" """
) )
@ -461,10 +461,10 @@ class TestPDB(object):
import pytest import pytest
def test_1(): def test_1():
i = 0 i = 0
print ("hello17") print("hello17")
pytest.set_trace() pytest.set_trace()
x = 3 x = 3
print ("hello18") print("hello18")
pytest.set_trace() pytest.set_trace()
x = 4 x = 4
""" """
@ -525,7 +525,7 @@ class TestPDB(object):
""" """
def pytest_enter_pdb(config): def pytest_enter_pdb(config):
assert config.testing_verification == 'configured' assert config.testing_verification == 'configured'
print 'enter_pdb_hook' print('enter_pdb_hook')
def pytest_configure(config): def pytest_configure(config):
config.testing_verification = 'configured' config.testing_verification = 'configured'
@ -562,7 +562,7 @@ class TestPDB(object):
custom_pdb=""" custom_pdb="""
class CustomPdb(object): class CustomPdb(object):
def set_trace(*args, **kwargs): def set_trace(*args, **kwargs):
print 'custom set_trace>' print('custom set_trace>')
""" """
) )
p1 = testdir.makepyfile( p1 = testdir.makepyfile(