diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index 09f9337d8..bdc4b062c 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -191,7 +191,10 @@ class TestDomainApplicationAdmin(TestCase): email_body = email_content["Simple"]["Body"]["Text"]["Data"] # Assert or perform other checks on the email details - expected_string = "Your .gov domain request requires a follow-up action to help with our review." + 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(to_email, EMAIL) self.assertIn(expected_string, email_body)