]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43954: Fix a missing word in the unittest docs (GH-25672)
authorZackery Spytz <zspytz@gmail.com>
Fri, 30 Apr 2021 07:32:19 +0000 (01:32 -0600)
committerGitHub <noreply@github.com>
Fri, 30 Apr 2021 07:32:19 +0000 (09:32 +0200)
Doc/library/unittest.rst

index d413224fd49836a78e6379a2d170710364366c49..0c29408cb192146e7d1e1919736ccf57e44614cd 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: