fix broken python3 and python2.5 tests
--HG-- branch : fix-broken-tests
This commit is contained in:
parent
5851a99b82
commit
0cd7effe35
|
@ -5,12 +5,13 @@ import py.code
|
||||||
def test_fixture_finalizer(testdir):
|
def test_fixture_finalizer(testdir):
|
||||||
testdir.makeconftest("""
|
testdir.makeconftest("""
|
||||||
import pytest
|
import pytest
|
||||||
|
import sys
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def browser(request):
|
def browser(request):
|
||||||
|
|
||||||
def finalize():
|
def finalize():
|
||||||
print 'Finalized'
|
sys.stdout.write('Finalized')
|
||||||
request.addfinalizer(finalize)
|
request.addfinalizer(finalize)
|
||||||
return {}
|
return {}
|
||||||
""")
|
""")
|
||||||
|
|
Loading…
Reference in New Issue