From d5891fe8d060b5dd4936b6196ad877b5dcff861c Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 15 Mar 2012 18:32:31 +0100 Subject: [PATCH] Fix test --- tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php b/tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php index c410b5ab5..48dfff6a8 100644 --- a/tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php +++ b/tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php @@ -14,6 +14,7 @@ namespace Composer\Test\Repository\Vcs; use Composer\Downloader\TransportException; use Composer\Repository\Vcs\GitHubDriver; +use Composer\Util\Filesystem; /** * @author Beau Simensen @@ -162,9 +163,13 @@ class GitHubDriverTest extends \PHPUnit_Framework_TestCase ->with($this->equalTo($repoUrl), $this->equalTo($repoApiUrl), $this->equalTo(false)) ->will($this->throwException(new TransportException('HTTP/1.1 404 Not Found', 404))); + // clean local clone if present + $fs = new Filesystem(); + $fs->removeDirectory(sys_get_temp_dir() . '/composer-' . preg_replace('{[^a-z0-9]}i', '-', $repoSshUrl) . '/'); + $process->expects($this->at(0)) ->method('execute') - ->with($this->stringContains('git fetch origin')); + ->with($this->stringContains($repoSshUrl)); $process->expects($this->at(1)) ->method('execute')