update unit test for action needed

This commit is contained in:
rachidatecs 2023-07-14 16:09:50 -04:00
parent 10c1d94a46
commit 9985125a0a
No known key found for this signature in database
GPG key ID: 3CEBBFA7325E5525
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ about the action needed from you. You may need to update your application or
provide additional information. provide additional information.
- If you do not receive a separate email with these details, please contact us: - If you do not receive a separate email with these details, please contact us:
<https://forms.office.com/pages/responsepage.aspx?id=bOfNPG2UEkq7evydCEI1SqHke9Gh6wJEl3kQ5EjWUKlUQzRJWDlBNTBCQUxTTzBaNlhTWURSSTBLTC4u> <https://forms.office.com/pages/responsepage.aspx?id=bOfNPG2UEkq7evydCEI1SqHke9Gh6wJEl3kQ5EjWUKlUQzRJWDlBNTBCQUxTTzBaNlhTWURSSTBLTC4u>
THANK YOU THANK YOU

View file

@ -191,7 +191,7 @@ class TestDomainApplicationAdmin(TestCase):
email_body = email_content["Simple"]["Body"]["Text"]["Data"] email_body = email_content["Simple"]["Body"]["Text"]["Data"]
# Assert or perform other checks on the email details # Assert or perform other checks on the email details
expected_string = "Your .gov domain request requires your attention." expected_string = "Your .gov domain request requires a follow-up action to help with our review."
self.assertEqual(from_email, settings.DEFAULT_FROM_EMAIL) self.assertEqual(from_email, settings.DEFAULT_FROM_EMAIL)
self.assertEqual(to_email, EMAIL) self.assertEqual(to_email, EMAIL)
self.assertIn(expected_string, email_body) self.assertIn(expected_string, email_body)