Commit 8844e3dd authored by Benjamin Eberlei's avatar Benjamin Eberlei

Fix warning in tests due to last fix.

parent 1934bd75
...@@ -386,7 +386,7 @@ class DataAccessTest extends \Doctrine\Tests\DbalFunctionalTestCase ...@@ -386,7 +386,7 @@ class DataAccessTest extends \Doctrine\Tests\DbalFunctionalTestCase
*/ */
public function testFetchAllSupportFetchClass() public function testFetchAllSupportFetchClass()
{ {
if ($GLOBALS['db_type'] == "oci8") { if (isset($GLOBALS['db_type']) && $GLOBALS['db_type'] == "oci8") {
$this->markTestSkipped("Not supported by OCI8"); $this->markTestSkipped("Not supported by OCI8");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment