diff --git a/tests/Doctrine/Tests/ORM/Mapping/Symfony/AbstractDriverTest.php b/tests/Doctrine/Tests/ORM/Mapping/Symfony/AbstractDriverTest.php index 18e0d5534..7315b57b2 100644 --- a/tests/Doctrine/Tests/ORM/Mapping/Symfony/AbstractDriverTest.php +++ b/tests/Doctrine/Tests/ORM/Mapping/Symfony/AbstractDriverTest.php @@ -56,7 +56,7 @@ abstract class AbstractDriverTest extends \PHPUnit_Framework_TestCase 'MyNamespace\MySubnamespace\Entity' => $this->dir, )); - $this->invoke($driver, '_findMappingFile', array('MyNamespace\MySubnamespace\Entity\Foo')); + $this->invoke($driver, 'findMappingFile', array('MyNamespace\MySubnamespace\Entity\Foo')); } public function testFindMappingNamespaceNotFound() @@ -70,7 +70,7 @@ abstract class AbstractDriverTest extends \PHPUnit_Framework_TestCase 'MyNamespace\MySubnamespace\Entity' => $this->dir, )); - $this->invoke($driver, '_findMappingFile', array('MyOtherNamespace\MySubnamespace\Entity\Foo')); + $this->invoke($driver, 'findMappingFile', array('MyOtherNamespace\MySubnamespace\Entity\Foo')); } protected function setUp()