diff --git a/app/helpers/gov_one_helper.rb b/app/helpers/gov_one_helper.rb index 6e36bab6f..23cd93f05 100644 --- a/app/helpers/gov_one_helper.rb +++ b/app/helpers/gov_one_helper.rb @@ -18,8 +18,6 @@ def login_uri # @return [URI] def logout_uri - puts "logout_uri: #{session[:id_token]}" - puts "logout_uri: #{session[:id_token]}" params = { post_logout_redirect_uri: GovOneAuthService::CALLBACKS[:logout], id_token_hint: session[:id_token], diff --git a/spec/system/registered_user/changing_password_spec.rb b/spec/system/registered_user/changing_password_spec.rb index e1e58782c..fec092658 100644 --- a/spec/system/registered_user/changing_password_spec.rb +++ b/spec/system/registered_user/changing_password_spec.rb @@ -5,7 +5,6 @@ let(:password) { 'Str0ngPa$$w0rd' } - include_context 'with user' before do @@ -32,8 +31,7 @@ click_button 'Save' expect(page).to have_current_path '/my-account' expect(page).to have_text('Manage your account') # page heading - .and have_text('Your new password has been saved.') # flash message - .and have_text("Password last changed on #{today}") # event + .and have_text('Your new password has been saved.') end end