summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-01-27 20:25:11 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-01-27 20:25:11 (GMT)
commit7b4e02c8629c44fe459716e9674d9185669b3b42 (patch)
tree74a9c759dcd0017d763c474e86ab59ea142bba3b /Doc
parent654ade3e6afa2527d1f642be28d69e219bd58b71 (diff)
downloadcpython-7b4e02c8629c44fe459716e9674d9185669b3b42.zip
cpython-7b4e02c8629c44fe459716e9674d9185669b3b42.tar.gz
cpython-7b4e02c8629c44fe459716e9674d9185669b3b42.tar.bz2
#7765: typos
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/unittest.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 13fa5e6..2eafe3c 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