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>2021-04-29 21:10:23 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-29 21:10:23 +0300
commit71dc16a12c2b0aaeee3a8fa55aa1ca880f5699b4 (patch)
tree1d6f3ebbcc4e0d799c2d55a3af7dc933cb8a829a /spec/views
parentc5e4f06c597e7ef9b584595a55a82cb221804e4b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/views')
-rw-r--r--spec/views/projects/tags/index.html.haml_spec.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/views/projects/tags/index.html.haml_spec.rb b/spec/views/projects/tags/index.html.haml_spec.rb
index 18b42f98e0b..2702ab9e2a9 100644
--- a/spec/views/projects/tags/index.html.haml_spec.rb
+++ b/spec/views/projects/tags/index.html.haml_spec.rb
@@ -20,12 +20,6 @@ RSpec.describe 'projects/tags/index.html.haml' do
allow(view).to receive(:current_user).and_return(project.namespace.owner)
end
- it 'defaults sort dropdown toggle to last updated' do
- stub_feature_flags(gldropdown_tags: false)
- render
- expect(rendered).to have_button('Last updated')
- end
-
it 'renders links to the Releases page for tags associated with a release' do
render
expect(rendered).to have_link(release.name, href: project_releases_path(project, anchor: release.tag))