diff options
author | Sebastian Rittau <srittau@rittau.biz> | 2023-08-30 09:36:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-30 09:36:59 (GMT) |
commit | 6c484c39beeb66d40ef0a73cc4f1e900ea498cfa (patch) | |
tree | c01de36d1464895b01f2cf665a44920cd55f87a0 | |
parent | 400a1cebc743515e40157ed7af86e48d654290ce (diff) | |
download | cpython-6c484c39beeb66d40ef0a73cc4f1e900ea498cfa.zip cpython-6c484c39beeb66d40ef0a73cc4f1e900ea498cfa.tar.gz cpython-6c484c39beeb66d40ef0a73cc4f1e900ea498cfa.tar.bz2 |
gh-108669: unittest: Fix documentation for TestResult.collectedDurations (#108670)
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 518bf6b..4c28e8f 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -2017,7 +2017,7 @@ Loading and running tests .. attribute:: collectedDurations - A list containing 2-tuples of :class:`TestCase` instances and floats + A list containing 2-tuples of test case names and floats representing the elapsed time of each test which was run. .. versionadded:: 3.12 |