浏览代码

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',
 );