From a41ec16b07fc354e88bbf4dc9b9bacb63125bbe6 Mon Sep 17 00:00:00 2001
From: Aga Dufrat <aga.dufrat@digital.cabinet-office.gov.uk>
Date: Mon, 1 Aug 2022 11:41:27 +0100
Subject: [PATCH] Update survey link

---
 app/presenters/content_item/recruitment_banner.rb | 2 +-
 test/integration/recruitment_banner_test.rb       | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/presenters/content_item/recruitment_banner.rb b/app/presenters/content_item/recruitment_banner.rb
index 9a16fc86e..b304fd556 100644
--- a/app/presenters/content_item/recruitment_banner.rb
+++ b/app/presenters/content_item/recruitment_banner.rb
@@ -1,6 +1,6 @@
 module ContentItem
   module RecruitmentBanner
-    SURVEY_URL_ONE = "https://GDSUserResearch.optimalworkshop.com/treejack/61ec38b742396bc23d00104953ffb17d".freeze
+    SURVEY_URL_ONE = "https://GDSUserResearch.optimalworkshop.com/treejack/834dm2s6".freeze
     SURVEY_URLS = {
       "/browse/working" => SURVEY_URL_ONE,
     }.freeze
diff --git a/test/integration/recruitment_banner_test.rb b/test/integration/recruitment_banner_test.rb
index 3923b5db7..30eea2786 100644
--- a/test/integration/recruitment_banner_test.rb
+++ b/test/integration/recruitment_banner_test.rb
@@ -16,7 +16,7 @@ class RecruitmentBannerTest < ActionDispatch::IntegrationTest
     visit guide["base_path"]
 
     assert page.has_css?(".gem-c-intervention")
-    assert page.has_link?("Take part in user research (opens in a new tab)", href: "https://GDSUserResearch.optimalworkshop.com/treejack/61ec38b742396bc23d00104953ffb17d")
+    assert page.has_link?("Take part in user research (opens in a new tab)", href: "https://GDSUserResearch.optimalworkshop.com/treejack/834dm2s6")
   end
 
   test "Recruitment Banner is not displayed unless page is tagged to a topic of interest" do
@@ -33,6 +33,6 @@ class RecruitmentBannerTest < ActionDispatch::IntegrationTest
     visit_with_cachebust guide["base_path"]
 
     assert_not page.has_css?(".gem-c-intervention")
-    assert_not page.has_link?("Take part in user research", href: "https://GDSUserResearch.optimalworkshop.com/treejack/61ec38b742396bc23d00104953ffb17d")
+    assert_not page.has_link?("Take part in user research", href: "https://GDSUserResearch.optimalworkshop.com/treejack/834dm2s6")
   end
 end