Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests')
-rw-r--r--spec/requests/health_controller_spec.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/requests/health_controller_spec.rb b/spec/requests/health_controller_spec.rb
index 83ec1565095..639f6194af9 100644
--- a/spec/requests/health_controller_spec.rb
+++ b/spec/requests/health_controller_spec.rb
@@ -127,10 +127,6 @@ RSpec.describe HealthController, feature_category: :database do
end
it 'responds with readiness checks data' do
- expect_next_instance_of(Gitlab::GitalyClient::ServerService) do |service|
- expect(service).to receive(:readiness_check).and_return({ success: true })
- end
-
subject
expect(json_response['db_check']).to contain_exactly({ 'status' => 'ok' })