diff --git a/app/controllers/brexit_checker_controller.rb b/app/controllers/brexit_checker_controller.rb
index 71340f0d4..b71363b37 100644
--- a/app/controllers/brexit_checker_controller.rb
+++ b/app/controllers/brexit_checker_controller.rb
@@ -51,7 +51,7 @@ def subscriber_list_options
path = brexit_checker_results_path(c: criteria_keys)
{
- "title" => "Your Get ready for Brexit results",
+ "title" => "How to prepare for a no deal Brexit",
"description" => "[You can view a copy of your results on GOV.UK.](#{Plek.new.website_root}#{path})",
"group_id" => SUBSCRIBER_LIST_GROUP_ID,
"tags" => { "brexit_checklist_criteria" => { "any" => criteria_keys } },
diff --git a/app/views/development/index.html.erb b/app/views/development/index.html.erb
index fffcafe8b..993ac7bd4 100644
--- a/app/views/development/index.html.erb
+++ b/app/views/development/index.html.erb
@@ -8,7 +8,7 @@
The following pages are rendered by this application:
- - <%= link_to "Get ready for Brexit questions", brexit_checker_questions_path %>
+ - <%= link_to "How to prepare for a no deal Brexit questions", brexit_checker_questions_path %>
<% @rendered_pages.each do |page| %>
- <%= link_to page.fetch("title"), page.fetch("link") %>
<% end %>
diff --git a/docs/brexit-checker.md b/docs/brexit-checker.md
index 622ce36f0..b429ae6e2 100644
--- a/docs/brexit-checker.md
+++ b/docs/brexit-checker.md
@@ -1,6 +1,6 @@
# Brexit Checker
-Finder frontend is responsible for the question and answer workflow of the "Get Ready for Brexit" Checker (aka Dynamic Lists). The tool allows users to answer a series of questions and then presents a list of "actions" that are relevant to them.
+Finder frontend is responsible for the question and answer workflow of the "How to prepare for a no deal Brexit" Checker (aka Dynamic Lists). The tool allows users to answer a series of questions and then presents a list of "actions" that are relevant to them.
## Data model
Main concepts for the Brexit Checker include:
diff --git a/spec/features/brexit_checker/email_signup_spec.rb b/spec/features/brexit_checker/email_signup_spec.rb
index 3e4428dec..fdab27269 100644
--- a/spec/features/brexit_checker/email_signup_spec.rb
+++ b/spec/features/brexit_checker/email_signup_spec.rb
@@ -7,7 +7,7 @@
let(:subscriber_list) do
{
- "title" => "Your Get ready for Brexit results",
+ "title" => "How to prepare for a no deal Brexit",
"slug" => "your-get-ready-for-brexit-results-a1a2a3a4a5",
"description" => "[You can view a copy of your results on GOV.UK.](https://www.test.gov.uk/get-ready-brexit-check/results?c%5B%5D=nationality-eu)",
"tags" => { "brexit_checklist_criteria" => { "any" => %w[nationality-eu] } },
diff --git a/spec/lib/services/email_alert_api_spec.rb b/spec/lib/services/email_alert_api_spec.rb
index 25530cc85..cd8b8c66a 100644
--- a/spec/lib/services/email_alert_api_spec.rb
+++ b/spec/lib/services/email_alert_api_spec.rb
@@ -13,7 +13,7 @@
let(:subscriber_list_options) do
{
- "title" => "Your Get ready for Brexit results",
+ "title" => "How to prepare for a no deal Brexit",
"slug" => subscriber_list_slug,
"description" => "You can view a copy of your results on GOV.UK.",
"tags" => { "brexit_checklist_criteria" => { "any" => %w(does-not-own-business eu-national) } },