Merged in jurko/pytest/fix_capfd_fixture_docstring (pull request #149)

correct a capfd fixture docstring typo
This commit is contained in:
holger krekel
2014-04-03 10:02:00 +02:00
+1 -1
View File
@@ -172,7 +172,7 @@ def capsys(request):
@pytest.fixture
def capfd(request):
"""enables capturing of writes to file descriptors 1 and 2 and makes
captured output available via ``capsys.readouterr()`` method calls
captured output available via ``capfd.readouterr()`` method calls
which return a ``(out, err)`` tuple.
"""
if "capsys" in request._funcargs: