diff options
| author | faishalmanzar <faishalmanzar@gmail.com> | 2023-09-29 03:26:10 +0530 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-10-02 09:12:08 +0200 |
| commit | f4e72e6523e6968d9628dfbff914ab57dbf19e6b (patch) | |
| tree | ffe9051cf778c89de02b1c4892cadd6c3f6c4ee4 /django/test/testcases.py | |
| parent | e99c7d8847e9006f877ab3cea47f1977652af71f (diff) | |
Fixed #32602 -- Clarified wording of TestCase class.
Diffstat (limited to 'django/test/testcases.py')
| -rw-r--r-- | django/test/testcases.py | 2 |
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) |
