Updated location of composer autoload in test bootstrap file

This commit is contained in:
Richard Miller 2012-06-13 17:01:10 +01:00
parent e61d0aac0f
commit ba75ca8d7b

View file

@ -1,6 +1,6 @@
<?php
if (file_exists($file = __DIR__.'/../vendor/.composer/autoload.php')) {
if (file_exists($file = __DIR__.'/../vendor/autoload.php')) {
$loader = require_once $file;
} else {
throw new RuntimeException('Install dependencies to run test suite.');