summaryrefslogtreecommitdiff
path: root/django/test/testcases.py
diff options
context:
space:
mode:
authorfaishalmanzar <faishalmanzar@gmail.com>2023-09-29 03:26:10 +0530
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-10-02 09:12:08 +0200
commitf4e72e6523e6968d9628dfbff914ab57dbf19e6b (patch)
treeffe9051cf778c89de02b1c4892cadd6c3f6c4ee4 /django/test/testcases.py
parente99c7d8847e9006f877ab3cea47f1977652af71f (diff)
Fixed #32602 -- Clarified wording of TestCase class.
Diffstat (limited to 'django/test/testcases.py')
-rw-r--r--django/test/testcases.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/testcases.py b/django/test/testcases.py
index 60a04bf5d2..391b5e99cc 100644
--- a/django/test/testcases.py
+++ b/django/test/testcases.py
@@ -250,7 +250,7 @@ class SimpleTestCase(unittest.TestCase):
def __call__(self, result=None):
"""
Wrapper around default __call__ method to perform common Django test
- set up. This means that user-defined Test Cases aren't required to
+ set up. This means that user-defined TestCases aren't required to
include a call to super().setUp().
"""
self._setup_and_call(result)