From e333a2bc62cfddaeeb88156b38bee9fa8073681b Mon Sep 17 00:00:00 2001 From: liugang Date: Mon, 19 Jan 2026 08:54:29 +0800 Subject: [PATCH] * [refac] Change the instance property to public so that it can be used in unit test scripts. --- test/lib/test.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/test.class.php b/test/lib/test.class.php index bc2e9e0532..213efa1bcf 100644 --- a/test/lib/test.class.php +++ b/test/lib/test.class.php @@ -61,7 +61,7 @@ class baseTest * @var object * @access private */ - protected $instance = null; + public $instance = null; /** * 被测试的类的反射对象。