fix test to account for earlier capfd skipping (on jython)

--HG--
branch : trunk
This commit is contained in:
holger krekel 2010-05-18 09:54:04 +02:00
parent e71685736e
commit 1a97c59439
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ class TestCaptureFuncarg:
def test_partial_setup_failure(self, testdir):
p = testdir.makepyfile("""
def test_hello(capfd, missingarg):
def test_hello(capsys, missingarg):
pass
""")
result = testdir.runpytest(p)