summaryrefslogtreecommitdiff
path: root/tests/schema
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-04 08:08:27 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-07 20:37:05 +0100
commit7119f40c9881666b6f9b5cf7df09ee1d21cc8344 (patch)
treefa50869f5614295f462d9bf77fec59365c621609 /tests/schema
parent9c19aff7c7561e3a82978a272ecdaad40dda5c00 (diff)
downloaddjango-7119f40c9881666b6f9b5cf7df09ee1d21cc8344.tar.gz
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Diffstat (limited to 'tests/schema')
-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 267a7c971b..208421eb64 100644
--- a/tests/schema/tests.py
+++ b/tests/schema/tests.py
@@ -1402,7 +1402,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):
@@ -1466,7 +1467,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):