diff --git a/src/registrar/fixtures_domain_requests.py b/src/registrar/fixtures_domain_requests.py index 0000eb64d..1a4ab0b4a 100644 --- a/src/registrar/fixtures_domain_requests.py +++ b/src/registrar/fixtures_domain_requests.py @@ -139,7 +139,8 @@ class DomainRequestFixture: da.federal_agency, _ = FederalAgency.objects.get_or_create(name=app["federal_agency"]) else: federal_agencies = FederalAgency.objects.all() - da.federal_agency = random.choice(federal_agencies) + # Random choice of agency for selects, used as placeholders for testing. + da.federal_agency = random.choice(federal_agencies) # nosec @classmethod def _set_many_to_many_relations(cls, da: DomainRequest, app: dict): diff --git a/src/registrar/migrations/0091_remove_domaininformation_federal_agency_and_more.py b/src/registrar/migrations/0091_remove_domaininformation_federal_agency_and_more.py index a61730059..9b5f7f9d6 100644 --- a/src/registrar/migrations/0091_remove_domaininformation_federal_agency_and_more.py +++ b/src/registrar/migrations/0091_remove_domaininformation_federal_agency_and_more.py @@ -18,4 +18,4 @@ class Migration(migrations.Migration): model_name="domainrequest", name="federal_agency", ), - ] \ No newline at end of file + ] diff --git a/src/registrar/migrations/0092_rename_updated_federal_agency_domaininformation_federal_agency_and_more.py b/src/registrar/migrations/0092_rename_updated_federal_agency_domaininformation_federal_agency_and_more.py index 9c4b26f23..70793b00e 100644 --- a/src/registrar/migrations/0092_rename_updated_federal_agency_domaininformation_federal_agency_and_more.py +++ b/src/registrar/migrations/0092_rename_updated_federal_agency_domaininformation_federal_agency_and_more.py @@ -20,4 +20,4 @@ class Migration(migrations.Migration): old_name="updated_federal_agency", new_name="federal_agency", ), - ] \ No newline at end of file + ]