summaryrefslogtreecommitdiff
path: root/tests/model_fields/test_uuid.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_fields/test_uuid.py')
-rw-r--r--tests/model_fields/test_uuid.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/model_fields/test_uuid.py b/tests/model_fields/test_uuid.py
index 343140c248..5cded8d6af 100644
--- a/tests/model_fields/test_uuid.py
+++ b/tests/model_fields/test_uuid.py
@@ -86,7 +86,10 @@ class TestQuerying(TestCase):
class TestSerialization(SimpleTestCase):
- test_data = '[{"fields": {"field": "550e8400-e29b-41d4-a716-446655440000"}, "model": "model_fields.uuidmodel", "pk": null}]'
+ test_data = (
+ '[{"fields": {"field": "550e8400-e29b-41d4-a716-446655440000"}, '
+ '"model": "model_fields.uuidmodel", "pk": null}]'
+ )
def test_dumping(self):
instance = UUIDModel(field=uuid.UUID('550e8400e29b41d4a716446655440000'))