diff --git a/yal/question_sets/endline/anxiety_endline.py b/yal/question_sets/endline/anxiety_endline.py index b7489d6d..a628f134 100644 --- a/yal/question_sets/endline/anxiety_endline.py +++ b/yal/question_sets/endline/anxiety_endline.py @@ -8,7 +8,14 @@ "questions": { "endline_5_q1_anxiety": { "type": "list", - "text": "Feeling nervous, anxious or on edge", + "text": "\n".join( + [ + "*Over the last 2 weeks, how often have you been " + "bothered by the following problems?*", + "", + "Feeling nervous, anxious or on edge", + ] + ), "options": [ ("not_at_all", "Not at all"), ("several_days", "Several days"), diff --git a/yal/tests/surveys/test_endline.py b/yal/tests/surveys/test_endline.py index 52f660d0..ce273ed5 100644 --- a/yal/tests/surveys/test_endline.py +++ b/yal/tests/surveys/test_endline.py @@ -477,6 +477,9 @@ async def test_state_body_image_assessment_end(tester: AppTester): "◼️◽️", "-----", "", + "*Over the last 2 weeks, how often have you been " + "bothered by the following problems?*", + "", "Feeling nervous, anxious or on edge", ] ) @@ -1137,6 +1140,9 @@ async def test_endline_flow(tester: AppTester, rapidpro_mock): "◼️◽️", "-----", "", + "*Over the last 2 weeks, how often have you been " + "bothered by the following problems?*", + "", "Feeling nervous, anxious or on edge", ] )