summaryrefslogtreecommitdiff
path: root/spec/helpers/commits_helper_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-26 18:19:16 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-26 18:19:16 +0000
commitfa69a57b46f4893c488445f79d6d290463820f7d (patch)
tree4a73ccd1f8ffb4dbb47a42c6edb309238828a44e /spec/helpers/commits_helper_spec.rb
parent34283a71d9ac31eb4da0b59d0b25fc2be014bc9c (diff)
downloadgitlab-ce-fa69a57b46f4893c488445f79d6d290463820f7d.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/helpers/commits_helper_spec.rb')
-rw-r--r--spec/helpers/commits_helper_spec.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/spec/helpers/commits_helper_spec.rb b/spec/helpers/commits_helper_spec.rb
index c947d11e9de..2d06f42dee4 100644
--- a/spec/helpers/commits_helper_spec.rb
+++ b/spec/helpers/commits_helper_spec.rb
@@ -341,27 +341,6 @@ RSpec.describe CommitsHelper do
])
end
- context 'when the show_tags_on_commits_view flag is disabled' do
- before do
- stub_feature_flags(show_tags_on_commits_view: false)
- end
-
- specify do
- expect(subject).to eq([
- commit,
- commit.author,
- ref,
- {
- merge_request: merge_request.cache_key,
- pipeline_status: pipeline.cache_key,
- xhr: true,
- controller: "commits",
- path: current_path
- }
- ])
- end
- end
-
describe "final cache key output" do
subject { ActiveSupport::Cache.expand_cache_key(cache_key) }