From ed5ff71fb81e09edf25cd5089b5179ec6e7bb3de Mon Sep 17 00:00:00 2001 From: Zach Margolis Date: Wed, 14 Jun 2017 09:11:50 -0400 Subject: [PATCH] Update link to Help Center question **Why**: The URL changed --- app/services/marketing_site.rb | 2 +- spec/services/marketing_site_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/services/marketing_site.rb b/app/services/marketing_site.rb index 992ae4da46d..ccbfa81b344 100644 --- a/app/services/marketing_site.rb +++ b/app/services/marketing_site.rb @@ -18,6 +18,6 @@ def self.help_url end def self.help_authenticator_app_url - URI.join(BASE_URL, help_url, '#what-is-an-authenticator-app').to_s + URI.join(BASE_URL, '/help/signing-in/what-is-an-authenticator-app/').to_s end end diff --git a/spec/services/marketing_site_spec.rb b/spec/services/marketing_site_spec.rb index 10cd420c379..bd72aca8384 100644 --- a/spec/services/marketing_site_spec.rb +++ b/spec/services/marketing_site_spec.rb @@ -28,7 +28,7 @@ describe '.help_authenticator_app_url' do it 'points to the authenticator app section of the help page' do expect(MarketingSite.help_authenticator_app_url).to eq( - 'https://www.login.gov/help#what-is-an-authenticator-app' + 'https://www.login.gov/help/signing-in/what-is-an-authenticator-app/' ) end end