summaryrefslogtreecommitdiff
path: root/tests/model_fields
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/model_fields
parent9c19aff7c7561e3a82978a272ecdaad40dda5c00 (diff)
downloaddjango-7119f40c9881666b6f9b5cf7df09ee1d21cc8344.tar.gz
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Diffstat (limited to 'tests/model_fields')
-rw-r--r--tests/model_fields/test_durationfield.py5
-rw-r--r--tests/model_fields/test_foreignkey.py8
2 files changed, 10 insertions, 3 deletions
diff --git a/tests/model_fields/test_durationfield.py b/tests/model_fields/test_durationfield.py
index f4e13711d6..2fd9984613 100644
--- a/tests/model_fields/test_durationfield.py
+++ b/tests/model_fields/test_durationfield.py
@@ -51,7 +51,10 @@ class TestQuerying(TestCase):
class TestSerialization(SimpleTestCase):
- test_data = '[{"fields": {"field": "1 01:00:00"}, "model": "model_fields.durationmodel", "pk": null}]'
+ test_data = (
+ '[{"fields": {"field": "1 01:00:00"}, "model": "model_fields.durationmodel", '
+ '"pk": null}]'
+ )
def test_dumping(self):
instance = DurationModel(field=datetime.timedelta(days=1, hours=1))
diff --git a/tests/model_fields/test_foreignkey.py b/tests/model_fields/test_foreignkey.py
index 2c15dea720..a5b646ae86 100644
--- a/tests/model_fields/test_foreignkey.py
+++ b/tests/model_fields/test_foreignkey.py
@@ -40,8 +40,12 @@ class ForeignKeyTests(TestCase):
model = FKUniqueTrue()
expected_warnings = [
checks.Warning(
- "Setting unique=True on a ForeignKey has the same effect as using a OneToOneField.",
- hint="ForeignKey(unique=True) is usually better served by a OneToOneField.",
+ "Setting unique=True on a ForeignKey has the same effect as using a "
+ "OneToOneField.",
+ hint=(
+ "ForeignKey(unique=True) is usually better served by a "
+ "OneToOneField."
+ ),
obj=FKUniqueTrue.fk_field.field,
id="fields.W342",
)