diff --git a/src/registrar/fixtures/fixtures_requests.py b/src/registrar/fixtures/fixtures_requests.py index f60619e2f..f5b57491e 100644 --- a/src/registrar/fixtures/fixtures_requests.py +++ b/src/registrar/fixtures/fixtures_requests.py @@ -244,7 +244,7 @@ def _set_many_to_many_relations(cls, request: DomainRequest, request_dict: dict) request.other_contacts.add(Contact.objects.get_or_create(**contact)[0]) elif not request.other_contacts.exists(): other_contacts = [ - Contact.objects.create(**cls.fake_contact()) for _ in range(random.randint(0, 3)) # nosec + Contact.objects.create(**cls.fake_contact()) for _ in range(random.randint(1, 3)) # nosec ] request.other_contacts.add(*other_contacts)