summaryrefslogtreecommitdiff
path: root/tests/model_fields
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_fields')
-rw-r--r--tests/model_fields/test_uuid.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/model_fields/test_uuid.py b/tests/model_fields/test_uuid.py
index 116e40065c..c53df2c7af 100644
--- a/tests/model_fields/test_uuid.py
+++ b/tests/model_fields/test_uuid.py
@@ -87,7 +87,9 @@ class TestQuerying(TestCase):
@classmethod
def setUpTestData(cls):
cls.objs = [
- NullableUUIDModel.objects.create(field=uuid.uuid4()),
+ NullableUUIDModel.objects.create(
+ field=uuid.UUID('25d405be-4895-4d50-9b2e-d6695359ce47'),
+ ),
NullableUUIDModel.objects.create(field='550e8400e29b41d4a716446655440000'),
NullableUUIDModel.objects.create(field=None),
]