about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-04-06 11:17:52 +0200
committerGitHub <noreply@github.com>2021-04-06 11:17:52 +0200
commitdf326b8b5c0659edb2aca77690a892f228b0e099 (patch)
tree0d6b014047fa80270377b83e313aa882923c9429 /spec
parent39b9a0619ab4ba68ed429152153cf0dbbfcd5a5a (diff)
parent5c225b03db280c94dc3519dc5bad2cac86487e9b (diff)
Merge pull request #1519 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to '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