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-14 21:12:38 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-14 21:12:38 +0300
commit283c7bb302510ed1fc55f0d333c484ce7fa781fd (patch)
treeadbb03e34cc91f339395f6417502c075ee84b8bb /spec/features/tags
parenta2b7b398c7855bccee5d2f0f9a021b2efea0838e (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/tags')
-rw-r--r--spec/features/tags/developer_creates_tag_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/tags/developer_creates_tag_spec.rb b/spec/features/tags/developer_creates_tag_spec.rb
index 111710ba325..6a1db051e87 100644
--- a/spec/features/tags/developer_creates_tag_spec.rb
+++ b/spec/features/tags/developer_creates_tag_spec.rb
@@ -34,7 +34,7 @@ RSpec.describe 'Developer creates tag', :js, feature_category: :source_code_mana
page.within(ref_selector) do
fill_in _('Search by Git revision'), with: ref_name
wait_for_requests
- expect(find('.gl-dropdown-contents')).not_to have_content(ref_name)
+ expect(find('.gl-new-dropdown-inner')).not_to have_content(ref_name)
end
end
@@ -60,9 +60,9 @@ RSpec.describe 'Developer creates tag', :js, feature_category: :source_code_mana
page.within ref_row do
ref_input = find('[name="ref"]', visible: false)
expect(ref_input.value).to eq 'master'
- expect(find('.gl-dropdown-button-text')).to have_content 'master'
+ expect(find('.gl-button-text')).to have_content 'master'
find('.ref-selector').click
- expect(find('.dropdown-menu')).to have_content 'test'
+ expect(find('.gl-new-dropdown-inner')).to have_content 'test'
end
end
end