1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Fixes random failing tests.

git-svn-id: https://svn.redmine.org/redmine/trunk@22809 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2024-05-03 11:57:47 +00:00
parent a4abae2324
commit 6ca7d4df55

View File

@ -1373,7 +1373,7 @@ class QueryTest < ActiveSupport::TestCase
result = query.results_scope
bookmarks = User.current.bookmarked_project_ids
assert_equal Project.where(parent_id: bookmarks).ids, result.map(&:id).sort
assert_equal Project.where(parent_id: bookmarks).ids.sort, result.map(&:id).sort
end
def test_filter_watched_issues