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):
|
||||
testdir.makeconftest("""
|
||||
import pytest
|
||||
import sys
|
||||
|
||||
@pytest.fixture
|
||||
def browser(request):
|
||||
|
||||
def finalize():
|
||||
print 'Finalized'
|
||||
sys.stdout.write('Finalized')
|
||||
request.addfinalizer(finalize)
|
||||
return {}
|
||||
""")
|
||||
|
|
Loading…
Reference in New Issue