summaryrefslogtreecommitdiff
path: root/tests/nested_foreign_keys
diff options
context:
space:
mode:
authordjango-bot <ops@djangoproject.com>2025-07-22 20:41:41 -0700
committernessita <124304+nessita@users.noreply.github.com>2025-07-23 20:17:55 -0300
commit69a93a88edb56ba47f624dac7a21aacc47ea474f (patch)
treef57507a4435d032493cae40e06ecb254790b67b2 /tests/nested_foreign_keys
parent55b0cc21310b76ce4018dd793ba50556eaf0af06 (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/nested_foreign_keys')
-rw-r--r--tests/nested_foreign_keys/tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/nested_foreign_keys/tests.py b/tests/nested_foreign_keys/tests.py
index 840d5f21fa..16823ae9b8 100644
--- a/tests/nested_foreign_keys/tests.py
+++ b/tests/nested_foreign_keys/tests.py
@@ -11,10 +11,10 @@ from .models import (
)
-# These are tests for #16715. The basic scheme is always the same: 3 models with
-# 2 relations. The first relation may be null, while the second is non-nullable.
-# In some cases, Django would pick the wrong join type for the second relation,
-# resulting in missing objects in the queryset.
+# These are tests for #16715. The basic scheme is always the same: 3 models
+# with 2 relations. The first relation may be null, while the second is
+# non-nullable. In some cases, Django would pick the wrong join type for the
+# second relation, resulting in missing objects in the queryset.
#
# Model A
# | (Relation A/B : nullable)