]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] 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:58 +0000 (14:03 +0200)
committerGitHub <noreply@github.com>
Sat, 17 May 2025 12:03:58 +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 fa34d391d0c1d32c371b23b7c189fbb2cf0ab9ea..3e9056a458bfc3b4c876577b453320ccc896d58c 100644 (file)
@@ -110,7 +110,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.