diff --git a/src/registrar/templates/domain_senior_official.html b/src/registrar/templates/domain_senior_official.html index fb706bb82..5d13e28e7 100644 --- a/src/registrar/templates/domain_senior_official.html +++ b/src/registrar/templates/domain_senior_official.html @@ -10,7 +10,7 @@

Senior official

Your senior official is a person within your organization who can - authorize domain requests. This person must be in a role of significant, executive responsibility within the organization. Read more about who can serve as an senior official.

+ authorize domain requests. This person must be in a role of significant, executive responsibility within the organization. Read more about who can serve as a senior official.

{% if generic_org_type == "federal" or generic_org_type == "tribal" %}

diff --git a/src/registrar/templates/emails/action_needed_reasons/questionable_senior_official.txt b/src/registrar/templates/emails/action_needed_reasons/questionable_senior_official.txt index 27728bba8..02ca242e2 100644 --- a/src/registrar/templates/emails/action_needed_reasons/questionable_senior_official.txt +++ b/src/registrar/templates/emails/action_needed_reasons/questionable_senior_official.txt @@ -14,7 +14,7 @@ We've reviewed your domain request, but we need more information about the senio - {{ domain_request.senior_official.get_formatted_name }} - {{ domain_request.senior_official.title }} -We expect an senior official to be someone in a role of significant, executive responsibility within the organization. Our guidelines are open-ended to accommodate the wide variety of government organizations that are eligible for .gov domains, but the person you listed does not meet our expectations for your type of organization. Read more about our guidelines for senior officials. +We expect a senior official to be someone in a role of significant, executive responsibility within the organization. Our guidelines are open-ended to accommodate the wide variety of government organizations that are eligible for .gov domains, but the person you listed does not meet our expectations for your type of organization. Read more about our guidelines for senior officials. ACTION NEEDED diff --git a/src/registrar/tests/test_models.py b/src/registrar/tests/test_models.py index 90342e45d..c8bf98158 100644 --- a/src/registrar/tests/test_models.py +++ b/src/registrar/tests/test_models.py @@ -1288,7 +1288,7 @@ class TestContact(TestCase): # test for a contact which has one user defined self.assertFalse(self.contact.has_more_than_one_join("user")) self.assertTrue(self.contact.has_more_than_one_join("senior_official")) - # test for a contact which is assigned as an senior official on a domain request + # test for a contact which is assigned as a senior official on a domain request self.assertFalse(self.contact_as_so.has_more_than_one_join("senior_official")) self.assertTrue(self.contact_as_so.has_more_than_one_join("submitted_domain_requests")) diff --git a/src/registrar/tests/test_views_domain.py b/src/registrar/tests/test_views_domain.py index 23ead108f..890879811 100644 --- a/src/registrar/tests/test_views_domain.py +++ b/src/registrar/tests/test_views_domain.py @@ -1097,7 +1097,7 @@ class TestDomainSeniorOfficial(TestDomainOverview): self.assertContains(page, "Testy") def test_domain_edit_senior_official_in_place(self): - """When editing an senior official for domain information and SO is not + """When editing a senior official for domain information and SO is not joined to any other objects""" self.domain_information.senior_official = Contact( first_name="Testy", last_name="Tester", title="CIO", email="nobody@igorville.gov" @@ -1259,7 +1259,7 @@ class TestDomainSeniorOfficial(TestDomainOverview): self.assertEqual("nobody@igorville.gov", self.domain_information.senior_official.email) def test_domain_edit_senior_official_creates_new(self): - """When editing an senior official for domain information and SO IS + """When editing a senior official for domain information and SO IS joined to another object""" # set SO and Other Contact to the same Contact object self.domain_information.senior_official = Contact( diff --git a/src/registrar/tests/test_views_request.py b/src/registrar/tests/test_views_request.py index 10aadf793..e78dfe860 100644 --- a/src/registrar/tests/test_views_request.py +++ b/src/registrar/tests/test_views_request.py @@ -2091,12 +2091,12 @@ class DomainRequestTests(TestWithUser, WebTest): def test_edit_senior_official_in_place(self): """When you: - 1. edit an senior official which is not joined to another model, + 1. edit a senior official which is not joined to another model, 2. then submit, the domain request is linked to the existing so, and the so updated.""" # Populate the database with a domain request that - # has an senior_official (so) + # has a senior_official (so) # We'll do it from scratch so, _ = Contact.objects.get_or_create( first_name="Testy",