From 899347d34904c22f6fcad33352c0fccc9f2dc105 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 24 Sep 2024 08:23:17 -0700 Subject: [PATCH] fix tests --- tests/app/test_navigation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/test_navigation.py b/tests/app/test_navigation.py index 58ff9f342..527e85554 100644 --- a/tests/app/test_navigation.py +++ b/tests/app/test_navigation.py @@ -424,7 +424,7 @@ def test_caseworkers_get_caseworking_navigation( client_request.login(active_caseworking_user) page = client_request.get("main.choose_template", service_id=SERVICE_ONE_ID) assert normalize_spaces(page.select_one("header + .grid-container nav").text) == ( - "Send messages Sent messages" + "service one Switch service" ) @@ -439,5 +439,5 @@ def test_caseworkers_see_jobs_nav_if_jobs_exist( client_request.login(active_caseworking_user) page = client_request.get("main.choose_template", service_id=SERVICE_ONE_ID) assert normalize_spaces(page.select_one("header + .grid-container nav").text) == ( - "Send messages Sent messages" + "service one Switch service" )