1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Workaround to fix a random failing test on MySQL 8 caused by the removal of implicit sorting for GROUP BY (#39737).

git-svn-id: https://svn.redmine.org/redmine/trunk@22475 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2023-11-26 13:11:23 +00:00
parent 83c671d40e
commit 68fa456223

View File

@ -231,7 +231,7 @@ class TimelogReportTest < Redmine::ControllerTest
get :report, :params => {:project_id => 1, :criteria => ['activity']}
assert_response :success
assert_select 'tr.last-level:first' do
assert_select 'tr.last-level' do
assert_select 'td.name', :text => 'Design'
assert_select 'td.hours:last', :text => '165:15'
end