From c9bbdf4f108f22df04def1d63a3442b9f3fcda7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Thu, 3 Apr 2014 09:59:04 +0200 Subject: [PATCH] correct a capfd fixture docstring typo --HG-- branch : fix_capfd_fixture_docstring --- _pytest/capture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/capture.py b/_pytest/capture.py index 8b369cd41..1eb20353d 100644 --- a/_pytest/capture.py +++ b/_pytest/capture.py @@ -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: