diff options
| author | django-bot <ops@djangoproject.com> | 2025-07-22 20:41:41 -0700 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2025-07-23 20:17:55 -0300 |
| commit | 69a93a88edb56ba47f624dac7a21aacc47ea474f (patch) | |
| tree | f57507a4435d032493cae40e06ecb254790b67b2 /tests/settings_tests | |
| parent | 55b0cc21310b76ce4018dd793ba50556eaf0af06 (diff) | |
Refs #36500 -- Rewrapped long docstrings and block comments via a script.
Rewrapped long docstrings and block comments to 79 characters + newline
using script from https://github.com/medmunds/autofix-w505.
Diffstat (limited to 'tests/settings_tests')
| -rw-r--r-- | tests/settings_tests/tests.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/settings_tests/tests.py b/tests/settings_tests/tests.py index c1fe2d042d..7794aeef9a 100644 --- a/tests/settings_tests/tests.py +++ b/tests/settings_tests/tests.py @@ -205,7 +205,8 @@ class SettingsTests(SimpleTestCase): getattr(settings, "TEST") def test_class_decorator(self): - # SimpleTestCase can be decorated by override_settings, but not ut.TestCase + # SimpleTestCase can be decorated by override_settings, but not + # ut.TestCase class SimpleTestCaseSubclass(SimpleTestCase): pass @@ -467,7 +468,8 @@ class IsOverriddenTest(SimpleTestCase): class TestListSettings(SimpleTestCase): """ Make sure settings that should be lists or tuples throw - ImproperlyConfigured if they are set to a string instead of a list or tuple. + ImproperlyConfigured if they are set to a string instead of a list or + tuple. """ list_or_tuple_settings = ( |
