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); }