From a8ad9069c93d44d570a0dac3a5281246e8f2c238 Mon Sep 17 00:00:00 2001 From: ptarjan <ptarjan@fb.com> Date: Thu, 21 Nov 2013 20:38:39 -0800 Subject: [PATCH] fix relative path to doctrine/common --- tests/Doctrine/Tests/ORM/Tools/SetupTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Tools/SetupTest.php b/tests/Doctrine/Tests/ORM/Tools/SetupTest.php index a6d67ecf8..553e48043 100644 --- a/tests/Doctrine/Tests/ORM/Tools/SetupTest.php +++ b/tests/Doctrine/Tests/ORM/Tools/SetupTest.php @@ -39,7 +39,7 @@ class SetupTest extends \Doctrine\Tests\OrmTestCase public function testDirectoryAutoload() { - Setup::registerAutoloadDirectory(__DIR__ . "/../../../../../lib/vendor/doctrine-common/lib"); + Setup::registerAutoloadDirectory(__DIR__ . "/../../../../../vendor/doctrine/common/lib"); $this->assertEquals($this->originalAutoloaderCount + 2, count(spl_autoload_functions())); }