1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Refs #33476 -- Refactored code to strictly match 88 characters line length.

This commit is contained in:
Mariusz Felisiak
2022-02-04 08:08:27 +01:00
parent 9c19aff7c7
commit 7119f40c98
404 changed files with 5944 additions and 2842 deletions

View File

@@ -228,7 +228,8 @@ class UniqueTogetherTests(SimpleTestCase):
Model.check(),
[
Error(
"'unique_together' refers to the nonexistent field 'missing_field'.",
"'unique_together' refers to the nonexistent field "
"'missing_field'.",
obj=Model,
id="models.E012",
),
@@ -1452,7 +1453,8 @@ class OtherModelTests(SimpleTestCase):
Model.check(),
[
Error(
"The model cannot have more than one field with 'primary_key=True'.",
"The model cannot have more than one field with "
"'primary_key=True'.",
obj=Model,
id="models.E026",
)
@@ -1469,7 +1471,8 @@ class OtherModelTests(SimpleTestCase):
Model.check(),
[
Error(
"'TEST_SWAPPED_MODEL_BAD_VALUE' is not of the form 'app_label.app_name'.",
"'TEST_SWAPPED_MODEL_BAD_VALUE' is not of the form "
"'app_label.app_name'.",
id="models.E001",
),
],