* [refac bug #65355] Add unit test.

This commit is contained in:
wangyidong
2025-11-26 11:03:43 +08:00
parent 00e9f005f5
commit 9cd68c6470
+1 -1
View File
@@ -34,7 +34,7 @@ $allHour = array(7, 8);
foreach($executionIDList as $executionID)
{
$tasks = $tester->dao->select('id,`left`')->from(TABLE_TASK)->where('execution')->eq($executionID)->fetchAll();
$tasks = $tester->dao->select('id,isParent,`left`')->from(TABLE_TASK)->where('execution')->eq($executionID)->fetchAll();
$taskList = array();
foreach($tasks as $task) $taskList[$task->id] = $task;
$projects[1][$executionID] = $taskList;