diff --git a/tests/ClientTest.php b/tests/ClientTest.php index 69e7f28..9b81699 100644 --- a/tests/ClientTest.php +++ b/tests/ClientTest.php @@ -1,5 +1,7 @@ markTestSkipped('There are no write permissions in order to create test repositories.'); } - $this->client = new Client('/usr/bin/git'); + $app = new Silex\Application(); + $app['git.client'] = '/usr/bin/git'; + $app['hidden'] = array(); + $this->client = new Client($app); } /**