Skip to content
Snippets Groups Projects
Commit 329198c4 authored by Thong Kuah's avatar Thong Kuah
Browse files

Fix ruby 2.7 keyword deprecation

parent fa97d23b
No related branches found
No related tags found
1 merge request!48742Fix ruby 2.7 keyword deprecation
......@@ -93,7 +93,7 @@ def open_epic_dropdown(items = [])
page.within('.issues-bulk-update') do
click_button 'Select epic'
items.map do |item|
find('.gl-link', { text: item }).click
find('.gl-link', text: item).click
end
end
end
......
......@@ -113,7 +113,7 @@ def open_health_status_dropdown(items = [])
page.within('.issues-bulk-update') do
click_button 'Select health status'
items.map do |item|
find('.gl-button-text', { text: item }).click
find('.gl-button-text', text: item).click
end
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment