Index: Doc/library/unittest.rst =================================================================== --- Doc/library/unittest.rst (revision 77710) +++ Doc/library/unittest.rst (working copy) @@ -241,8 +241,8 @@ 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`_.