From 94fb85e7650aefe352a04073a722f48525f23c98 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Fri, 11 Apr 2014 14:11:00 -0400 Subject: [PATCH] Issue #21170: Removed invalid parameter names from unittest doc. Patch by Kushal Das. --- Doc/library/unittest.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 52c68faa93..91f61f4f61 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1687,14 +1687,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:: 2.7 - .. method:: stopTestRun(test) + .. method:: stopTestRun() Called once after all tests are executed. -- 2.50.1