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