mirror of
https://github.com/composer/composer
synced 2025-05-10 09:02:59 +00:00
Fix file layout in unit tests
Changes made in previious commit made the output of the file change, which in turn broke the unit tests. This commit updates the fixtures to match the new output.
This commit is contained in:
parent
ede2b37ae2
commit
1892f57e47
3 changed files with 6 additions and 3 deletions
|
@ -38,7 +38,8 @@ class ComposerAutoloaderInitFilesAutoload
|
|||
|
||||
$loader->register(true);
|
||||
|
||||
foreach (require __DIR__ . '/autoload_files.php' as $file) {
|
||||
$includeFiles = require __DIR__ . '/autoload_files.php';
|
||||
foreach ($includeFiles as $file) {
|
||||
require $file;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue