From babe33166568904fdb0777e62f5e5ec211cee80f Mon Sep 17 00:00:00 2001 From: liugang Date: Tue, 30 Sep 2025 23:35:54 +0800 Subject: [PATCH] * [misc] Fix unit tests for actionModel::getDynamicByExecution() method MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- module/action/test/lib/action.unittest.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/action/test/lib/action.unittest.class.php b/module/action/test/lib/action.unittest.class.php index 88367e70cf..dddfef274f 100755 --- a/module/action/test/lib/action.unittest.class.php +++ b/module/action/test/lib/action.unittest.class.php @@ -351,6 +351,7 @@ class actionTest */ public function getDynamicByExecutionTest($executionID, $account = '', $period = 'all', $date = '', $direction = 'next') { + ob_start(); $date = $date == 'today' ? date('Y-m-d', time()) : $date; $objects = $this->objectModel->getDynamicByExecution((int)$executionID, $account, $period, 'date_desc', 50, $date, $direction); if(dao::isError()) return 0;