Docs: fix spelling of "test case" in unittest documentation (#134137)

This commit is contained in:
Clifford Gama 2025-05-17 13:36:38 +02:00 committed by GitHub
parent af6b3b825f
commit b41d79c776
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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.