From 1029a4694e5390e8c6ec88a6a2192c2e32bb5430 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Sun, 2 Jun 2024 11:42:35 -0400 Subject: [PATCH] Fixed typo in django/test/testcases.py docstring. --- django/test/testcases.py | 4 ++-- 1 file 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)