Skip to content

Commit 203e4b4

Browse files
committed
Update Cost of living survey link
1 parent bbf7edb commit 203e4b4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/presenters/content_item/cost_of_living_banner.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module ContentItem
22
module CostOfLivingBanner
3-
COST_OF_LIVING_SURVEY_URL = "https://surveys.publishing.service.gov.uk/s/XS2YWV/".freeze
3+
COST_OF_LIVING_SURVEY_URL = "https://s.userzoom.com/m/MSBDMTQ3MVM0NCAg".freeze
44

55
SURVEY_URL_MAPPINGS = {
66
"/guidance/cost-of-living-payment" => COST_OF_LIVING_SURVEY_URL,

app/views/layouts/application.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
<% if @content_item.survey_url %>
6666
<%= render "govuk_publishing_components/components/intervention", {
67-
suggestion_text: "Help improve GOV.UK",
67+
suggestion_text: "Help make GOV.UK better",
6868
suggestion_link_text: "Take part in user research",
6969
suggestion_link_url: @content_item.survey_url,
7070
new_tab: true,

test/integration/cost_of_living_banner_test.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class RecruitmentBannerTest < ActionDispatch::IntegrationTest
2727
visit guide["base_path"]
2828

2929
assert page.has_css?(".gem-c-intervention")
30-
assert page.has_link?("Take part in user research (opens in a new tab)", href: "https://surveys.publishing.service.gov.uk/s/XS2YWV/")
30+
assert page.has_link?("Take part in user research (opens in a new tab)", href: "https://s.userzoom.com/m/MSBDMTQ3MVM0NCAg")
3131
end
3232
end
3333

@@ -38,6 +38,6 @@ class RecruitmentBannerTest < ActionDispatch::IntegrationTest
3838
visit guide["base_path"]
3939

4040
assert_not page.has_css?(".gem-c-intervention")
41-
assert_not page.has_link?("Take part in user research (opens in a new tab)", href: "https://surveys.publishing.service.gov.uk/s/XS2YWV/")
41+
assert_not page.has_link?("Take part in user research (opens in a new tab)", href: "https://s.userzoom.com/m/MSBDMTQ3MVM0NCAg")
4242
end
4343
end

0 commit comments

Comments
 (0)