From a6bb35eb3fde7e827e4f62427a9cc182cb8481e3 Mon Sep 17 00:00:00 2001 From: kenjis Date: Thu, 12 Oct 2023 15:17:19 +0900 Subject: [PATCH] test: update assertion --- tests/system/Config/FactoriesTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/Config/FactoriesTest.php b/tests/system/Config/FactoriesTest.php index b53c1e9133e5..6f74414def4e 100644 --- a/tests/system/Config/FactoriesTest.php +++ b/tests/system/Config/FactoriesTest.php @@ -429,7 +429,7 @@ public function testGetComponentInstances() public function testSetComponentInstances(array $data) { $before = Factories::getComponentInstances('config'); - $this->assertSame(['aliases' => [], 'instances' => []], $before); + $this->assertSame(['options' => [], 'aliases' => [], 'instances' => []], $before); Factories::setComponentInstances('config', $data);