Fix unit test after merge

This commit is contained in:
zandercymatics 2024-06-12 09:38:13 -06:00
parent 836b190822
commit fda3503896
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 9 additions and 11 deletions

View file

@ -894,9 +894,7 @@ class DomainRequestExport:
# Handle the federal_type field. Defaults to the wrong format.
federal_type = request.get("federal_type")
human_readable_federal_type = (
BranchChoices.get_branch_label(federal_type) if federal_type else None
)
human_readable_federal_type = BranchChoices.get_branch_label(federal_type) if federal_type else None
# Handle the org_type field
org_type = request.get("generic_org_type") or request.get("organization_type")