From 1a97c5943978f1432c7ff1c2c64206c3efea908e Mon Sep 17 00:00:00 2001 From: holger krekel Date: Tue, 18 May 2010 09:54:04 +0200 Subject: [PATCH] fix test to account for earlier capfd skipping (on jython) --HG-- branch : trunk --- testing/plugin/test_pytest_capture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/plugin/test_pytest_capture.py b/testing/plugin/test_pytest_capture.py index f5015db58..bb8e8f440 100644 --- a/testing/plugin/test_pytest_capture.py +++ b/testing/plugin/test_pytest_capture.py @@ -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)