diff --git a/tests/unit/e_db_mysqlTest.php b/tests/unit/e_db_mysqlTest.php index 610b4fdc2..dda78c8cf 100644 --- a/tests/unit/e_db_mysqlTest.php +++ b/tests/unit/e_db_mysqlTest.php @@ -151,7 +151,7 @@ $actual = e107::getDebug()->getTimeMarkers(); - $this->assertIsArray($actual); + $this->assertTrue(is_array($actual)); $this->assertEquals('Testing', $actual[1]['What']); $this->assertArrayHasKey('Index', $actual[1]); $this->assertArrayHasKey('Time', $actual[1]); diff --git a/tests/unit/e_db_pdoTest.php b/tests/unit/e_db_pdoTest.php index 66ddda38a..0fdb6316a 100644 --- a/tests/unit/e_db_pdoTest.php +++ b/tests/unit/e_db_pdoTest.php @@ -154,7 +154,7 @@ $actual = e107::getDebug()->getTimeMarkers(); - $this->assertIsArray($actual); + $this->assertTrue(is_array($actual)); $this->assertEquals('Testing', $actual[1]['What']); $this->assertArrayHasKey('Index', $actual[1]); $this->assertArrayHasKey('Time', $actual[1]);