]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: fix spelling of "test case" in `unittest` documentation (#134137)
authorClifford Gama <53076065+cliff688@users.noreply.github.com>
Sat, 17 May 2025 11:36:38 +0000 (13:36 +0200)
committerGitHub <noreply@github.com>
Sat, 17 May 2025 11:36:38 +0000 (13:36 +0200)
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.