Browse Source

update tests for new expectations.

Taylor Otwell 12 years ago
parent
commit
8cf43868da
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/Composer/Test/Autoload/Fixtures/autoload_functions.php

+ 2 - 2
tests/Composer/Test/Autoload/Fixtures/autoload_functions.php

@@ -21,8 +21,8 @@ return call_user_func(function() {
 
     $loader->register();
 
-    require __DIR__ . '/a/a/test.php';
-    require __DIR__ . '/b/b/test2.php';
+    require $vendorDir . '/a/a/test.php';
+    require $vendorDir . '/b/b/test2.php';
 
     return $loader;
 });