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-02 15:08:02 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-02 15:08:02 +0300
commitf62c9f693fbe0d9bfac43cbe24b86af3c35f6a17 (patch)
tree7bbeb4fdf92d78324a92ff8a1385ea807c78665a /spec/features/issue_rebalancing_spec.rb
parent81745c5a7143999d492943a2dceb977ced0a766f (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 686aa5eb1b6..4fa29361c54 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('.flash-notice', text: alert_message_regex, count: 1)
+ expect(page).to have_selector('.gl-alert-danger', 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('.flash-notice', text: alert_message_regex, count: 1)
+ expect(page).to have_selector('.gl-alert-danger', text: alert_message_regex, count: 1)
end
it 'does not show an alert in project issues list with other sorts' do