Fixed random models_fields.test_uuid.TestQuerying failures.

Random failures depended on a generated UUID.
This commit is contained in:
Mariusz Felisiak 2019-12-27 15:25:50 +01:00 committed by GitHub
parent 62727e65fb
commit 5a68f02498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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),
]