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-07-27 06:08:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-27 06:08:46 +0300
commit75208e7c925434b876e038603f81165f93ce43c5 (patch)
tree7f7816ddf7ce4c5344994df0a8406ea94990a9a0 /spec/workers/clusters
parent760a58cc78d5646d957bf10d8e86d940d423dfbe (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers/clusters')
-rw-r--r--spec/workers/clusters/agents/notify_git_push_worker_spec.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/workers/clusters/agents/notify_git_push_worker_spec.rb b/spec/workers/clusters/agents/notify_git_push_worker_spec.rb
index 561a66b86e9..c6ef8dc3338 100644
--- a/spec/workers/clusters/agents/notify_git_push_worker_spec.rb
+++ b/spec/workers/clusters/agents/notify_git_push_worker_spec.rb
@@ -25,17 +25,5 @@ RSpec.describe Clusters::Agents::NotifyGitPushWorker, feature_category: :deploym
expect { subject }.not_to raise_error
end
end
-
- context 'when the :notify_kas_on_git_push feature flag is disabled' do
- before do
- stub_feature_flags(notify_kas_on_git_push: false)
- end
-
- it 'does not notify KAS' do
- expect(Gitlab::Kas::Client).not_to receive(:new)
-
- subject
- end
- end
end
end