From 751575fa97f2551582414a3975dc7b556a88ca94 Mon Sep 17 00:00:00 2001 From: symonk Date: Sat, 24 Oct 2020 10:59:25 +0100 Subject: [PATCH] make some hookspec docstrings technically correct --- src/_pytest/hookspec.py | 4 ++-- 1 file 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)``. """