소스 검색

Fix autoload path

Thomas Rabaix 11 년 전
부모
커밋
f2241feedb
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Tests/tests/autoload.php.dist

+ 2 - 2
Tests/tests/autoload.php.dist

@@ -3,8 +3,8 @@
 // if the bundle is within a symfony project, try to reuse the project's autoload
 
 $files = array(
-    __DIR__.'/../../../../../../../app/autoload.php',
-    __DIR__.'/../../../../../../../apps/autoload.php',
+    __DIR__.'/../../../../../app/autoload.php',
+    __DIR__.'/../../../../../apps/autoload.php',
     __DIR__.'/../../vendor/autoload.php',
 );