Fix tests

This commit is contained in:
zandercymatics 2024-04-08 11:03:23 -06:00
parent 8ce51f5bd9
commit 0bf7e1f1a8
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 16 additions and 2 deletions

View file

@ -1168,7 +1168,13 @@ class DomainRequestAdmin(ListHeaderAdmin):
] ]
# Readonly fields for analysts and superusers # Readonly fields for analysts and superusers
readonly_fields = ("other_contacts", "current_websites", "alternative_domains", "generic_org_type", "is_election_board") readonly_fields = (
"other_contacts",
"current_websites",
"alternative_domains",
"generic_org_type",
"is_election_board",
)
# Read only that we'll leverage for CISA Analysts # Read only that we'll leverage for CISA Analysts
analyst_readonly_fields = [ analyst_readonly_fields = [

View file

@ -100,7 +100,7 @@ class DomainRequest(TimeStampedModel):
class OrganizationChoices(models.TextChoices): class OrganizationChoices(models.TextChoices):
""" """
Primary organization choices: Primary organization choices:
For use in the request experience For use in the domain request experience
Keys need to match OrgChoicesElectionOffice and OrganizationChoicesVerbose Keys need to match OrgChoicesElectionOffice and OrganizationChoicesVerbose
""" """

View file

@ -1588,6 +1588,8 @@ class TestDomainRequestAdmin(MockEppLib):
"other_contacts", "other_contacts",
"current_websites", "current_websites",
"alternative_domains", "alternative_domains",
"generic_org_type",
"is_election_board",
"id", "id",
"created_at", "created_at",
"updated_at", "updated_at",
@ -1637,6 +1639,8 @@ class TestDomainRequestAdmin(MockEppLib):
"other_contacts", "other_contacts",
"current_websites", "current_websites",
"alternative_domains", "alternative_domains",
"generic_org_type",
"is_election_board",
"creator", "creator",
"about_your_organization", "about_your_organization",
"requested_domain", "requested_domain",
@ -1662,6 +1666,8 @@ class TestDomainRequestAdmin(MockEppLib):
"other_contacts", "other_contacts",
"current_websites", "current_websites",
"alternative_domains", "alternative_domains",
"generic_org_type",
"is_election_board",
] ]
self.assertEqual(readonly_fields, expected_fields) self.assertEqual(readonly_fields, expected_fields)
@ -2259,6 +2265,8 @@ class TestDomainInformationAdmin(TestCase):
expected_fields = [ expected_fields = [
"other_contacts", "other_contacts",
"generic_org_type",
"is_election_board",
"creator", "creator",
"type_of_work", "type_of_work",
"more_organization_information", "more_organization_information",