From 255f3d9579997cfbc4bb91ef23110d459f202aff Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Thu, 11 Dec 2025 20:56:33 -0800 Subject: [PATCH] tests: adjust expectation for hometown customization --- spec/system/home_spec.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/system/home_spec.rb b/spec/system/home_spec.rb index aafa9323c..185a72ef7 100644 --- a/spec/system/home_spec.rb +++ b/spec/system/home_spec.rb @@ -56,7 +56,8 @@ RSpec.describe 'Home page' do it 'visits the root path and is redirected to the local live feed page', :js do visit root_path - expect(page).to have_current_path('/public/local') + # Hometown: the logged-out homepage is /about, not the local feed + expect(page).to have_current_path('/about') end end end