mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-25 03:58:39 +02:00
cleaned up noise in tests
This commit is contained in:
parent
167634cc99
commit
d56982ac26
3 changed files with 1073 additions and 980 deletions
|
@ -917,7 +917,6 @@ class DomainApplicationAdmin(ListHeaderAdmin):
|
||||||
request,
|
request,
|
||||||
"A rejection reason is required.",
|
"A rejection reason is required.",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
if obj.status != original_obj.status:
|
if obj.status != original_obj.status:
|
||||||
|
|
|
@ -353,8 +353,14 @@ class DomainApplication(TimeStampedModel):
|
||||||
class RejectionReasons(models.TextChoices):
|
class RejectionReasons(models.TextChoices):
|
||||||
DOMAIN_PURPOSE = "domain_purpose", "Domain purpose requirements not met"
|
DOMAIN_PURPOSE = "domain_purpose", "Domain purpose requirements not met"
|
||||||
REQUESTOR = "requestor", "Requestor isn't authorized to make the request"
|
REQUESTOR = "requestor", "Requestor isn't authorized to make the request"
|
||||||
SECOND_DOMAIN_REASONING = "second_domain_reasoning", "Organization already has a domain and does not provide sufficient reasoning for a second domain"
|
SECOND_DOMAIN_REASONING = (
|
||||||
CONTACTS_OR_ORGANIZATION_LEGITIMACY = "contacts_or_organization_legitimacy", "Research could not corroborate legitimacy of contacts or organization"
|
"second_domain_reasoning",
|
||||||
|
"Organization already has a domain and does not provide sufficient reasoning for a second domain",
|
||||||
|
)
|
||||||
|
CONTACTS_OR_ORGANIZATION_LEGITIMACY = (
|
||||||
|
"contacts_or_organization_legitimacy",
|
||||||
|
"Research could not corroborate legitimacy of contacts or organization",
|
||||||
|
)
|
||||||
ORGANIZATION_ELIGIBILITY = "organization_eligibility", "Organization isn't eligible for a .gov"
|
ORGANIZATION_ELIGIBILITY = "organization_eligibility", "Organization isn't eligible for a .gov"
|
||||||
NAMING_REQUIREMENTS = "naming_requirements", "Naming requirements not met"
|
NAMING_REQUIREMENTS = "naming_requirements", "Naming requirements not met"
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue