about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-04-05 14:59:05 +0200
committerStarfall <us@starfall.systems>2021-04-11 12:17:57 -0500
commitaa4cc093aed5a24910de7ba586f43afc13e22df2 (patch)
treee9e1a3712f8c6c4e789760d2d051272edaec7d20
parentbcd7ed469029b269edc2df6e5e0521997c64bdb1 (diff)
Fix glitch-soc-specific health check spec
-rw-r--r--spec/controllers/health_controller_spec.rb (renamed from spec/controllers/health_check_controller_spec.rb)4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/controllers/health_check_controller_spec.rb b/spec/controllers/health_controller_spec.rb
index c00600c9b..1e41f6ed7 100644
--- a/spec/controllers/health_check_controller_spec.rb
+++ b/spec/controllers/health_controller_spec.rb
@@ -1,10 +1,10 @@
 require 'rails_helper'
 
-describe HealthCheck::HealthCheckController do
+describe HealthController do
   render_views
 
   describe 'GET #show' do
-    subject(:response) { get :index, params: { format: :json } }
+    subject(:response) { get :show, params: { format: :json } }
 
     it 'returns the right response' do
       expect(response).to have_http_status 200