From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 17 May 2025 12:03:33 +0000 (+0200) Subject: [3.14] Docs: fix spelling of "test case" in `unittest` documentation (GH-134137)... X-Git-Tag: v3.14.0b2~130 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b43e1d0b48584af16fd0c4bda4c0d56bf72bf57a;p=thirdparty%2FPython%2Fcpython.git [3.14] Docs: fix spelling of "test case" in `unittest` documentation (GH-134137) (#134138) 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> --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 61022fe052ca..dcdda1719bf5 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -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.