diff --git a/app/main/views/index.py b/app/main/views/index.py index 5b2a33b81..007c01f4d 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -197,7 +197,7 @@ def clear_goals(): return render_template( "views/guidance/index.html", navigation_links=guidance_nav(), - title="Clear Goals" + title="Clear Goals", ) @@ -207,7 +207,7 @@ def rules_and_regulations(): return render_template( "views/guidance/index.html", navigation_links=guidance_nav(), - title="Rules and Regulations" + title="Rules and Regulations", ) @@ -217,7 +217,7 @@ def establish_trust(): return render_template( "views/guidance/index.html", navigation_links=guidance_nav(), - title="Establish Trust" + title="Establish Trust", ) @@ -227,7 +227,7 @@ def write_for_action(): return render_template( "views/guidance/index.html", navigation_links=guidance_nav(), - title="Write For Action" + title="Write For Action", ) @@ -237,7 +237,7 @@ def multiple_languages(): return render_template( "views/guidance/index.html", navigation_links=guidance_nav(), - title="Multiple Languages" + title="Multiple Languages", ) @@ -247,7 +247,7 @@ def get_the_word_out(): return render_template( "views/guidance/index.html", navigation_links=guidance_nav(), - title="Get the Word Out" + title="Get the Word Out", ) @@ -257,7 +257,7 @@ def as_people_receive_text(): return render_template( "views/guidance/index.html", navigation_links=guidance_nav(), - title="As People Receive Text" + title="As People Receive Text", ) diff --git a/app/main/views/sub_navigation_dictionaries.py b/app/main/views/sub_navigation_dictionaries.py index 2785ead74..94ab358ae 100644 --- a/app/main/views/sub_navigation_dictionaries.py +++ b/app/main/views/sub_navigation_dictionaries.py @@ -86,7 +86,7 @@ def guidance_nav(): "name": "As people receive texts", "link": "main.as_people_receive_text", }, - ] + ], }, { "name": "Write for action", diff --git a/tests/app/test_navigation.py b/tests/app/test_navigation.py index 58ff9f342..749c41fa3 100644 --- a/tests/app/test_navigation.py +++ b/tests/app/test_navigation.py @@ -32,6 +32,7 @@ EXCLUDED_ENDPOINTS = tuple( "api_keys", "archive_service", "archive_user", + "as_people_receive_text", "begin_tour", "billing_details", "callbacks", @@ -50,6 +51,7 @@ EXCLUDED_ENDPOINTS = tuple( "choose_template", "choose_template_to_copy", "clear_cache", + "clear_goals", "confirm_edit_user_email", "confirm_edit_user_mobile_number", "confirm_redact_template", @@ -87,6 +89,7 @@ EXCLUDED_ENDPOINTS = tuple( "edit_user_permissions", "email_not_received", "error", + "establish_trust", "features", "features_sms", "find_services_by_name", @@ -103,8 +106,10 @@ EXCLUDED_ENDPOINTS = tuple( "get_notifications_as_json", "get_started", "get_started_old", + "get_the_word_out", "go_to_dashboard_after_tour", "guest_list", + "guidance", "guidance_index", "history", "how_to_pay", @@ -127,6 +132,7 @@ EXCLUDED_ENDPOINTS = tuple( "manage_users", "message_status", "monthly", + "multiple_languages", "new_password", "notifications_sent_by_service", "old_guest_list", @@ -161,6 +167,7 @@ EXCLUDED_ENDPOINTS = tuple( "revalidate_email_sent", "revoke_api_key", "roadmap", + "rules_and_regulations", "security", "security_policy", "send_files_by_email", @@ -250,6 +257,7 @@ EXCLUDED_ENDPOINTS = tuple( "view_template_version", "view_template_versions", "who_its_for", + "write_for_action", }, ) )