diff options
Diffstat (limited to 'Doc/library/unittest.rst')
-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 4de6829..460b2f3 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -199,7 +199,7 @@ qualified class or method names. You can run tests with more detail (higher verbosity) by passing in the -v flag:: - python-m unittest -v test_module + python -m unittest -v test_module For a list of all the command line options:: @@ -1600,7 +1600,7 @@ name then the package :file:`__init__.py` will be checked for ``load_tests``. .. note:: - The default pattern is 'test*.py'. This matches all python files + The default pattern is 'test*.py'. This matches all Python files that start with 'test' but *won't* match any test directories. A pattern like 'test*' will match test packages as well as |