diff --git a/_pytest/logging.py b/_pytest/logging.py index 902872e45..2f50192c3 100644 --- a/_pytest/logging.py +++ b/_pytest/logging.py @@ -289,9 +289,9 @@ def caplog(request): Captured logs are available through the following methods:: - * caplog.text() -> string containing formatted log output - * caplog.records() -> list of logging.LogRecord instances - * caplog.record_tuples() -> list of (logger_name, level, message) tuples + * caplog.text -> string containing formatted log output + * caplog.records -> list of logging.LogRecord instances + * caplog.record_tuples -> list of (logger_name, level, message) tuples * caplog.clear() -> clear captured records and formatted log output string """ result = LogCaptureFixture(request.node) diff --git a/doc/en/builtin.rst b/doc/en/builtin.rst index 7a71827e9..7edb1c453 100644 --- a/doc/en/builtin.rst +++ b/doc/en/builtin.rst @@ -77,9 +77,9 @@ For information about fixtures, see :ref:`fixtures`. To see a complete list of a Captured logs are available through the following methods:: - * caplog.text() -> string containing formatted log output - * caplog.records() -> list of logging.LogRecord instances - * caplog.record_tuples() -> list of (logger_name, level, message) tuples + * caplog.text -> string containing formatted log output + * caplog.records -> list of logging.LogRecord instances + * caplog.record_tuples -> list of (logger_name, level, message) tuples * caplog.clear() -> clear captured records and formatted log output string monkeypatch The returned ``monkeypatch`` fixture provides these