summaryrefslogtreecommitdiff
path: root/tests/admin_checks
diff options
context:
space:
mode:
authorDražen Odobašić <dodobas@candela-it.com>2015-09-11 19:33:12 -0400
committerTim Graham <timograham@gmail.com>2015-09-12 11:40:50 -0400
commitb1e33ceceda1e75ff68c7deed8f6659683a195d3 (patch)
treee4e446f69194f2dc3c9c7ee3ecf48290ea8d4d31 /tests/admin_checks
parent84b0a8d2aad042fb573df5055b6153770d0929ac (diff)
downloaddjango-b1e33ceceda1e75ff68c7deed8f6659683a195d3.tar.gz
Fixed #23395 -- Limited line lengths to 119 characters.
Diffstat (limited to 'tests/admin_checks')
-rw-r--r--tests/admin_checks/tests.py20
1 files changed, 14 insertions, 6 deletions
diff --git a/tests/admin_checks/tests.py b/tests/admin_checks/tests.py
index 4544ddd382..280af17e1f 100644
--- a/tests/admin_checks/tests.py
+++ b/tests/admin_checks/tests.py
@@ -340,7 +340,10 @@ class SystemChecksTestCase(SimpleTestCase):
self.assertEqual(errors, expected)
def test_generic_inline_model_admin_non_gfk_ct_field(self):
- "A GenericInlineModelAdmin raises problems if the ct_field points to a field that isn't part of a GenericForeignKey"
+ """
+ A GenericInlineModelAdmin raises problems if the ct_field points to a
+ field that isn't part of a GenericForeignKey.
+ """
class InfluenceInline(GenericStackedInline):
model = Influence
ct_field = 'name'
@@ -351,7 +354,8 @@ class SystemChecksTestCase(SimpleTestCase):
errors = SongAdmin(Song, AdminSite()).check()
expected = [
checks.Error(
- "'admin_checks.Influence' has no GenericForeignKey using content type field 'name' and object ID field 'object_id'.",
+ "'admin_checks.Influence' has no GenericForeignKey using "
+ "content type field 'name' and object ID field 'object_id'.",
hint=None,
obj=InfluenceInline,
id='admin.E304',
@@ -360,7 +364,10 @@ class SystemChecksTestCase(SimpleTestCase):
self.assertEqual(errors, expected)
def test_generic_inline_model_admin_non_gfk_fk_field(self):
- "A GenericInlineModelAdmin raises problems if the ct_fk_field points to a field that isn't part of a GenericForeignKey"
+ """
+ A GenericInlineModelAdmin raises problems if the ct_fk_field points to
+ a field that isn't part of a GenericForeignKey.
+ """
class InfluenceInline(GenericStackedInline):
model = Influence
ct_fk_field = 'name'
@@ -371,7 +378,8 @@ class SystemChecksTestCase(SimpleTestCase):
errors = SongAdmin(Song, AdminSite()).check()
expected = [
checks.Error(
- "'admin_checks.Influence' has no GenericForeignKey using content type field 'content_type' and object ID field 'name'.",
+ "'admin_checks.Influence' has no GenericForeignKey using "
+ "content type field 'content_type' and object ID field 'name'.",
hint=None,
obj=InfluenceInline,
id='admin.E304',
@@ -389,8 +397,8 @@ class SystemChecksTestCase(SimpleTestCase):
errors = RawIdNonexistingAdmin(Album, AdminSite()).check()
expected = [
checks.Error(
- ("The value of 'raw_id_fields[0]' refers to 'nonexisting', which is "
- "not an attribute of 'admin_checks.Album'."),
+ "The value of 'raw_id_fields[0]' refers to 'nonexisting', "
+ "which is not an attribute of 'admin_checks.Album'.",
hint=None,
obj=RawIdNonexistingAdmin,
id='admin.E002',