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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-09 18:39:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-09 18:39:53 +0300
commitff0dfda44e6b0896c31ef7822227877c4c95e12c (patch)
tree049db614074bd3343fd1e370113873ffb6ee4fed /spec/requests
parentdbff55cb6962eb6209b1c4ced1cd79fb53607ebd (diff)
Add latest changes from gitlab-org/gitlab@15-8-stable-ee
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' })