summaryrefslogtreecommitdiff
path: root/tests/schema/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/schema/tests.py')
-rw-r--r--tests/schema/tests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/schema/tests.py b/tests/schema/tests.py
index 58dcdb3ab1..7e2080d2d9 100644
--- a/tests/schema/tests.py
+++ b/tests/schema/tests.py
@@ -1366,7 +1366,8 @@ class SchemaTests(TransactionTestCase):
Book._meta.get_field("author").column,
(Author._meta.db_table, Author._meta.pk.column),
)
- # The index on ForeignKey is replaced with a unique constraint for OneToOneField.
+ # The index on ForeignKey is replaced with a unique constraint for
+ # OneToOneField.
self.assertEqual(counts, {"fks": expected_fks, "uniques": 1, "indexes": 0})
def test_alter_field_fk_keeps_index(self):
@@ -1430,7 +1431,8 @@ class SchemaTests(TransactionTestCase):
BookWithO2O._meta.get_field("author").column,
(Author._meta.db_table, Author._meta.pk.column),
)
- # The unique constraint on OneToOneField is replaced with an index for ForeignKey.
+ # The unique constraint on OneToOneField is replaced with an index for
+ # ForeignKey.
self.assertEqual(counts, {"fks": expected_fks, "uniques": 0, "indexes": 1})
def test_alter_field_o2o_keeps_unique(self):