]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] Docs: fix spelling of "test case" in `unittest` documentation (GH-134137)...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 17 May 2025 12:03:33 +0000 (14:03 +0200)
committerGitHub <noreply@github.com>
Sat, 17 May 2025 12:03:33 +0000 (14:03 +0200)
Docs: fix spelling of "test case" in `unittest` documentation (GH-134137)
(cherry picked from commit b41d79c776af4bfa5d28fc2036c9137978294b6a)

Co-authored-by: Clifford Gama <53076065+cliff688@users.noreply.github.com>
Doc/library/unittest.rst

index 61022fe052ca80157892981a138db93907fae663..dcdda1719bf5938de2901df1169e098618072699 100644 (file)
@@ -109,7 +109,7 @@ Here is a short script to test three string methods::
       unittest.main()
 
 
-A testcase is created by subclassing :class:`unittest.TestCase`.  The three
+A test case is created by subclassing :class:`unittest.TestCase`.  The three
 individual tests are defined with methods whose names start with the letters
 ``test``.  This naming convention informs the test runner about which methods
 represent tests.