diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-08-30 13:21:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-30 13:21:05 (GMT) |
commit | ecabf1e19fb52c2ee27c4ad85dfb49bb6b021fc1 (patch) | |
tree | 801b8bceb99bdb293e02d91de3361f9a2c83fd65 | |
parent | 1d6d05aa8283a4ad3376ac62189471869bd43826 (diff) | |
download | cpython-ecabf1e19fb52c2ee27c4ad85dfb49bb6b021fc1.zip cpython-ecabf1e19fb52c2ee27c4ad85dfb49bb6b021fc1.tar.gz cpython-ecabf1e19fb52c2ee27c4ad85dfb49bb6b021fc1.tar.bz2 |
[3.12] gh-108669: unittest: Fix documentation for TestResult.collectedDurations (GH-108670) (#108672)
gh-108669: unittest: Fix documentation for TestResult.collectedDurations (GH-108670)
(cherry picked from commit 6c484c39beeb66d40ef0a73cc4f1e900ea498cfa)
Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
-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 |