diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-04-11 18:11:11 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-04-11 18:11:11 (GMT) |
commit | f98021cff276a02cc4bbee76747c57d1f3e7921b (patch) | |
tree | 70365ed6b13c11d509b6fb0896b1b2ca606d6979 /Doc | |
parent | 1b7611405d80df5387cad6492b7b12436450cced (diff) | |
download | cpython-f98021cff276a02cc4bbee76747c57d1f3e7921b.zip cpython-f98021cff276a02cc4bbee76747c57d1f3e7921b.tar.gz cpython-f98021cff276a02cc4bbee76747c57d1f3e7921b.tar.bz2 |
Issue #21170: Removed invalid parameter names from unittest doc.
Patch by Kushal Das.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/unittest.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 690c98b..fbeaf7f 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1807,14 +1807,14 @@ Loading and running tests Called after the test case *test* has been executed, regardless of the outcome. - .. method:: startTestRun(test) + .. method:: startTestRun() Called once before any tests are executed. .. versionadded:: 3.1 - .. method:: stopTestRun(test) + .. method:: stopTestRun() Called once after all tests are executed. |