summaryrefslogtreecommitdiff
path: root/src/_pytest
diff options
context:
space:
mode:
authorsymonk <jackofspaces@gmail.com>2020-10-24 10:59:25 +0100
committersymonk <jackofspaces@gmail.com>2020-10-24 10:59:25 +0100
commit751575fa97f2551582414a3975dc7b556a88ca94 (patch)
treef2acc95fa94b3a8664ad15415ca797e6e2837330 /src/_pytest
parentdaa11ab9f130c7557623872bd9a7ca854406f24e (diff)
downloadpytest-751575fa97f2551582414a3975dc7b556a88ca94.tar.gz
make some hookspec docstrings technically correct
Diffstat (limited to 'src/_pytest')
-rw-r--r--src/_pytest/hookspec.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/_pytest/hookspec.py b/src/_pytest/hookspec.py
index aa0b5cef4..33ca782cf 100644
--- a/src/_pytest/hookspec.py
+++ b/src/_pytest/hookspec.py
@@ -446,7 +446,7 @@ def pytest_runtest_logstart(
See :func:`pytest_runtest_protocol` for a description of the runtest protocol.
:param str nodeid: Full node ID of the item.
- :param location: A triple of ``(filename, lineno, testname)``.
+ :param location: A tuple of ``(filename, lineno, testname)``.
"""
@@ -458,7 +458,7 @@ def pytest_runtest_logfinish(
See :func:`pytest_runtest_protocol` for a description of the runtest protocol.
:param str nodeid: Full node ID of the item.
- :param location: A triple of ``(filename, lineno, testname)``.
+ :param location: A tuple of ``(filename, lineno, testname)``.
"""