Skip to content

Commit

Permalink
MDL-38364 phpunit: PHPUnit autoload uses capital A
Browse files Browse the repository at this point in the history
  • Loading branch information
David Monllao authored and Damyon Wiese committed Mar 20, 2013
1 parent 4b226f3 commit 4f47ee6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/tool/phpunit/cli/util.php
Expand Up @@ -47,10 +47,10 @@
)
);

if (file_exists(__DIR__.'/../../../../vendor/phpunit/phpunit/PHPUnit/autoload.php')) {
if (file_exists(__DIR__.'/../../../../vendor/phpunit/phpunit/PHPUnit/Autoload.php')) {
// Composer packages present.
require_once(__DIR__.'/../../../../vendor/autoload.php');
require_once(__DIR__.'/../../../../vendor/phpunit/phpunit/PHPUnit/autoload.php');
require_once(__DIR__.'/../../../../vendor/phpunit/phpunit/PHPUnit/Autoload.php');

} else {
// Verify PHPUnit PEAR libs can be loaded.
Expand Down

0 comments on commit 4f47ee6

Please sign in to comment.