Fixed typo in django/test/testcases.py docstring.

This commit is contained in:
Jacob Walls 2024-06-02 11:42:35 -04:00 committed by Sarah Boyce
parent bdd538488c
commit 1029a4694e
1 changed files with 2 additions and 2 deletions

View File

@ -405,8 +405,8 @@ class SimpleTestCase(unittest.TestCase):
def modify_settings(self, **kwargs): def modify_settings(self, **kwargs):
""" """
A context manager that temporarily applies changes a list setting and A context manager that temporarily applies changes to a list setting
reverts back to the original value when exiting the context. and reverts back to the original value when exiting the context.
""" """
return modify_settings(**kwargs) return modify_settings(**kwargs)