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>2022-12-05 18:08:04 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-05 18:08:04 +0300
commit63414b32fd0e75477285df4603e9f7b31dffa955 (patch)
treefe6cb1ad5b1c8c4ddb4dc7300aa9f046b1c93fc2 /spec/features/issue_rebalancing_spec.rb
parent12b995e0e7aace4b7695c4424aed71b053c2c2a6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/issue_rebalancing_spec.rb')
-rw-r--r--spec/features/issue_rebalancing_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/issue_rebalancing_spec.rb b/spec/features/issue_rebalancing_spec.rb
index 4fa29361c54..3b14924b90e 100644
--- a/spec/features/issue_rebalancing_spec.rb
+++ b/spec/features/issue_rebalancing_spec.rb
@@ -41,13 +41,13 @@ RSpec.describe 'Issue rebalancing' do
it 'shows an alert in project issues list with manual sort', :js do
visit project_issues_path(project, sort: 'relative_position')
- expect(page).to have_selector('.gl-alert-danger', text: alert_message_regex, count: 1)
+ expect(page).to have_selector('.gl-alert-info', text: alert_message_regex, count: 1)
end
it 'shows an alert in group issues list with manual sort', :js do
visit issues_group_path(group, sort: 'relative_position')
- expect(page).to have_selector('.gl-alert-danger', text: alert_message_regex, count: 1)
+ expect(page).to have_selector('.gl-alert-info', text: alert_message_regex, count: 1)
end
it 'does not show an alert in project issues list with other sorts' do