From 68fa4562231130eae0f3ebd13fd1c3dbae240655 Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Sun, 26 Nov 2023 13:11:23 +0000 Subject: [PATCH] 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 --- test/functional/timelog_report_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/timelog_report_test.rb b/test/functional/timelog_report_test.rb index b555378d0..1aac36077 100644 --- a/test/functional/timelog_report_test.rb +++ b/test/functional/timelog_report_test.rb @@ -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