diff options
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/home_controller_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/home_controller_spec.rb b/spec/controllers/home_controller_spec.rb index 7eaa43df7..cf85c5f79 100644 --- a/spec/controllers/home_controller_spec.rb +++ b/spec/controllers/home_controller_spec.rb @@ -4,7 +4,7 @@ RSpec.describe HomeController, type: :controller do describe 'GET #index' do it 'returns 200' do get :index - expect(response).to have_http_status(:success) + expect(response).to redirect_to(new_user_session_path) end end end |