From ccd01233834522e3f1550da94e9be9c1d4b14232 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Sun, 15 Oct 2023 13:25:26 +0800 Subject: [PATCH] fix phpunit --- tests/SPC/doctor/CheckListHandlerTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/SPC/doctor/CheckListHandlerTest.php b/tests/SPC/doctor/CheckListHandlerTest.php index 28b37cf5..03e00344 100644 --- a/tests/SPC/doctor/CheckListHandlerTest.php +++ b/tests/SPC/doctor/CheckListHandlerTest.php @@ -16,6 +16,7 @@ final class CheckListHandlerTest extends TestCase { $list = new CheckListHandler(); - $this->assertCount(6, $list->runChecks()); + $id = $list->runChecks(); + $this->assertCount(7, $id); } }