summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-06-15 15:07:35 +0000
committerClement Ho <clemmakesapps@gmail.com>2018-06-15 15:07:35 +0000
commit2daf7f6236d41ba4da71721aa35b2e40092c9b3f (patch)
tree24de09aafb4b6ce50f2f386cdd29370916d11b00 /spec
parent4afdfe76d892a5584bc0220c065e802ad604340e (diff)
parent564c819b3deec8617f87d59f904c0364b031e05c (diff)
downloadgitlab-ce-2daf7f6236d41ba4da71721aa35b2e40092c9b3f.tar.gz
Merge branch '47915-badges' into 'master'
Resolve "Long labels names result in overflowing their description block under the Labels page" Closes #47915 See merge request gitlab-org/gitlab-ce!19868
Diffstat (limited to 'spec')
-rw-r--r--spec/features/labels_hierarchy_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/labels_hierarchy_spec.rb b/spec/features/labels_hierarchy_spec.rb
index 4700ada1aae..5573148f8bc 100644
--- a/spec/features/labels_hierarchy_spec.rb
+++ b/spec/features/labels_hierarchy_spec.rb
@@ -34,7 +34,7 @@ feature 'Labels Hierarchy', :js, :nested_groups do
wait_for_requests
- expect(page).to have_selector('span.badge', text: label.title)
+ expect(page).to have_selector('.badge', text: label.title)
end
end
@@ -45,7 +45,7 @@ feature 'Labels Hierarchy', :js, :nested_groups do
wait_for_requests
- expect(page).not_to have_selector('span.badge', text: child_group_label.title)
+ expect(page).not_to have_selector('.badge', text: child_group_label.title)
end
end