]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43954: Fix a missing word in the unittest docs (GH-25672)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 30 Apr 2021 07:56:56 +0000 (00:56 -0700)
committerGitHub <noreply@github.com>
Fri, 30 Apr 2021 07:56:56 +0000 (00:56 -0700)
(cherry picked from commit 2abbd8f2add5e80b86a965625b9a77ae94a101cd)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Doc/library/unittest.rst

index ebed5c08082d06706c33312139c4dd056c4bf0b3..9541997e3ccca0c31372f62dc8007dcca7c47d21 100644 (file)
@@ -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: