From ec85e90e84a7074f1be9b4c5247e3d436a992422 Mon Sep 17 00:00:00 2001 From: Klaus Silveira Date: Thu, 7 Jun 2012 01:40:28 -0300 Subject: [PATCH] Fixing broken tests --- tests/ClientTest.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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); } /**