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
path: root/spec
diff options
context:
space:
mode:
authorAmmar Alakkad <aalakkad@gitlab.com>2019-07-17 17:18:12 +0300
committerKushal Pandya <kushalspandya@gmail.com>2019-07-17 17:18:12 +0300
commit8ba48310af448d5e03601dc153cff1d66609280b (patch)
tree5b67c23a81935707971f42b890b4b7c492cb48b7 /spec
parentc11eb0c3a42dba550764e96426dd9bf21347b917 (diff)
Resolve "Label picker: Line break on long label titles"
Diffstat (limited to 'spec')
-rw-r--r--spec/features/issues/bulk_assignment_labels_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/issues/bulk_assignment_labels_spec.rb b/spec/features/issues/bulk_assignment_labels_spec.rb
index 06cb2e36334..7be5961af09 100644
--- a/spec/features/issues/bulk_assignment_labels_spec.rb
+++ b/spec/features/issues/bulk_assignment_labels_spec.rb
@@ -381,7 +381,7 @@ describe 'Issues > Labels bulk assignment' do
if unmark
items.map do |item|
# Make sure we are unmarking the item no matter the state it has currently
- click_link item until find('a', text: item)[:class] == 'label-item'
+ click_link item until find('a', text: item)[:class].include? 'label-item'
end
end
end