diff options
| author | Jacob Walls <jacobtylerwalls@gmail.com> | 2024-06-02 11:42:35 -0400 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-07-22 08:36:13 +0200 |
| commit | 1029a4694e5390e8c6ec88a6a2192c2e32bb5430 (patch) | |
| tree | 2fcae6ef87b0bdb07b68516c4a1d40d537ddf123 /django/test | |
| parent | bdd538488c837edec74cbfd4b0064228373319a1 (diff) | |
Fixed typo in django/test/testcases.py docstring.
Diffstat (limited to 'django/test')
| -rw-r--r-- | django/test/testcases.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/test/testcases.py b/django/test/testcases.py index f1c6b5ae9c..6027332cd5 100644 --- a/django/test/testcases.py +++ b/django/test/testcases.py @@ -405,8 +405,8 @@ class SimpleTestCase(unittest.TestCase): def modify_settings(self, **kwargs): """ - A context manager that temporarily applies changes a list setting and - reverts back to the original value when exiting the context. + A context manager that temporarily applies changes to a list setting + and reverts back to the original value when exiting the context. """ return modify_settings(**kwargs) |
