From 7e438350ac2d04e0626105ba61fad7c0900012e6 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Mon, 19 Jun 2023 02:25:14 +0900 Subject: [PATCH] Fix unit test for 10cd76d0 change --- tests/unit/framework/DBTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/framework/DBTest.php b/tests/unit/framework/DBTest.php index 4dcabb718..688d6dd45 100644 --- a/tests/unit/framework/DBTest.php +++ b/tests/unit/framework/DBTest.php @@ -13,7 +13,7 @@ class DBTest extends \Codeception\TestCase\Test $oDB = Rhymix\Framework\DB::getInstance(); $this->assertTrue($oDB instanceof Rhymix\Framework\DB); $this->assertEquals($oDB, \DB::getInstance()); - $this->assertTrue(\DB::getInstance() instanceof \DB); + $this->assertTrue(\DB::getInstance() instanceof Rhymix\Framework\DB); $this->assertTrue($oDB->isConnected()); $this->assertTrue($oDB->getHandle() instanceof Rhymix\Framework\Helpers\DBHelper); }