From: Ezio Melotti Date: Wed, 27 Jan 2010 20:25:11 +0000 (+0000) Subject: #7765: typos X-Git-Tag: v2.7a3~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b4e02c8629c44fe459716e9674d9185669b3b42;p=thirdparty%2FPython%2Fcpython.git #7765: typos --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 13fa5e69aa18..2eafe3c49bf0 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -241,8 +241,8 @@ The ``discover`` sub-command has the following options: The -s, -p, & -t options can be passsed in as positional arguments. The following two command lines are equivalent:: - python -m unittest -s project_directory -p '*_test.py' - python -m unittest project_directory '*_test.py' + python -m unittest discover -s project_directory -p '*_test.py' + python -m unittest discover project_directory '*_test.py' Test modules and packages can customize test loading and discovery by through the `load_tests protocol`_. @@ -1445,7 +1445,7 @@ Loading and running tests .. method:: stopTestRun(test) - Called once before any tests are executed. + Called once after all tests are executed. .. versionadded:: 2.7