From 81b959e778372c44ade528e953bb7d159a54384c Mon Sep 17 00:00:00 2001 From: asaki222 Date: Wed, 9 Oct 2024 12:37:10 -0400 Subject: [PATCH] updated test --- src/registrar/tests/test_views_request.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/registrar/tests/test_views_request.py b/src/registrar/tests/test_views_request.py index 8530859e2..68a966881 100644 --- a/src/registrar/tests/test_views_request.py +++ b/src/registrar/tests/test_views_request.py @@ -522,7 +522,8 @@ class DomainRequestTests(TestWithUser, WebTest): # And the existence of the modal's data parked and ready for the js init. # The next assert also tests for the passed requested domain context from # the view > domain_request_form > modal - self.assertContains(review_page, "You are about to submit a domain request for city.gov") + self.assertContains(review_page, "You are about to submit a domain request for") + self.assertContains(review_page, "city.gov") # final submission results in a redirect to the "finished" URL self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)