mirror of
https://github.com/redmine/redmine.git
synced 2025-11-15 09:46:02 +01:00
Fix random test failures in Redmine::Acts::MentionableTest due to unsorted mentioned_users (#41889).
Patch by Go MAEDA (user:maeda). git-svn-id: https://svn.redmine.org/redmine/trunk@23322 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -49,13 +49,13 @@ class Redmine::Acts::MentionableTest < ActiveSupport::TestCase
|
||||
def test_mentioned_users_with_multiple_mentions
|
||||
issue = Issue.generate!(project_id: 1, description: 'Hello @dlopper, @jsmith.')
|
||||
|
||||
assert_equal [User.find(2), User.find(3)], issue.mentioned_users
|
||||
assert_equal [User.find(2), User.find(3)], issue.mentioned_users.sort_by(&:id)
|
||||
end
|
||||
|
||||
def test_mentioned_users_should_not_mention_same_user_multiple_times
|
||||
issue = Issue.generate!(project_id: 1, description: '@dlopper @jsmith @dlopper')
|
||||
|
||||
assert_equal [User.find(2), User.find(3)], issue.mentioned_users
|
||||
assert_equal [User.find(2), User.find(3)], issue.mentioned_users.sort_by(&:id)
|
||||
end
|
||||
|
||||
def test_mentioned_users_should_include_only_active_users
|
||||
@@ -137,7 +137,7 @@ class Redmine::Acts::MentionableTest < ActiveSupport::TestCase
|
||||
def test_notified_mentions
|
||||
issue = Issue.generate!(project_id: 1, description: 'Hello @dlopper, @jsmith.')
|
||||
|
||||
assert_equal [User.find(2), User.find(3)], issue.notified_mentions
|
||||
assert_equal [User.find(2), User.find(3)], issue.notified_mentions.sort_by(&:id)
|
||||
end
|
||||
|
||||
def test_notified_mentions_should_not_include_users_who_out_of_all_email
|
||||
|
||||
Reference in New Issue
Block a user