summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2021-04-30 07:32:19 (GMT)
committerGitHub <noreply@github.com>2021-04-30 07:32:19 (GMT)
commit2abbd8f2add5e80b86a965625b9a77ae94a101cd (patch)
treee586556b1bbdf20970249621322c721f804bb2ba
parent74613a46fc79cacc88d3eae4105b12691cd4ba20 (diff)
downloadcpython-2abbd8f2add5e80b86a965625b9a77ae94a101cd.zip
cpython-2abbd8f2add5e80b86a965625b9a77ae94a101cd.tar.gz
cpython-2abbd8f2add5e80b86a965625b9a77ae94a101cd.tar.bz2
bpo-43954: Fix a missing word in the unittest docs (GH-25672)
-rw-r--r--Doc/library/unittest.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index d413224..0c29408 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -331,8 +331,9 @@ the `load_tests protocol`_.
.. versionchanged:: 3.4
Test discovery supports :term:`namespace packages <namespace package>`
- for start directory. Note that you need to the top level directory too.
- (e.g. ``python -m unittest discover -s root/namespace -t root``).
+ for the start directory. Note that you need to specify the top level
+ directory too (e.g.
+ ``python -m unittest discover -s root/namespace -t root``).
.. _organizing-tests: