Fixing broken tests

This commit is contained in:
Klaus Silveira
2012-07-15 02:05:25 -03:00
parent 66ec944da1
commit e9f7c09cc4

View File

@@ -23,9 +23,9 @@ class ClientTest extends PHPUnit_Framework_TestCase
}
$app = new Silex\Application();
$app['git.client'] = getenv('GIT_CLIENT') ?: '/usr/bin/git';
$app['hidden'] = array();
$this->client = new Client($app);
$options['path'] = getenv('GIT_CLIENT') ?: '/usr/bin/git';
$options['hidden'] = array();
$this->client = new Client($options);
}
/**