1
0
Fork 0

Fix tests

pull/531/merge
Jordi Boggiano 2012-04-05 23:03:02 +02:00
parent 9371253e38
commit 6aaa523c0d
2 changed files with 4 additions and 2 deletions

View File

@ -205,7 +205,8 @@ class GitDownloaderTest extends \PHPUnit_Framework_TestCase
$filesystem = $this->getMock('Composer\Util\Filesystem');
$filesystem->expects($this->any())
->method('removeDirectory')
->with($this->equalTo('composerPath'));
->with($this->equalTo('composerPath'))
->will($this->returnValue(true));
$downloader = $this->getDownloaderMock(null, $processExecutor, $filesystem);
$downloader->remove($packageMock, 'composerPath');

View File

@ -111,7 +111,8 @@ class HgDownloaderTest extends \PHPUnit_Framework_TestCase
$filesystem = $this->getMock('Composer\Util\Filesystem');
$filesystem->expects($this->any())
->method('removeDirectory')
->with($this->equalTo('composerPath'));
->with($this->equalTo('composerPath'))
->will($this->returnValue(true));
$downloader = $this->getDownloaderMock(null, $processExecutor, $filesystem);
$downloader->remove($packageMock, 'composerPath');