1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 08:32:56 +00:00

xz test tweak

This commit is contained in:
Jordi Boggiano 2016-01-10 20:45:40 +00:00
parent d2e97eecb2
commit e6f1c13d00

View file

@ -14,6 +14,7 @@ namespace Composer\Test\Downloader;
use Composer\Downloader\XzDownloader;
use Composer\Util\Filesystem;
use Composer\Util\RemoteFilesystem;
class XzDownloaderTest extends \PHPUnit_Framework_TestCase
{
@ -63,11 +64,7 @@ class XzDownloaderTest extends \PHPUnit_Framework_TestCase
->method('get')
->with('vendor-dir')
->will($this->returnValue($this->testDir));
$config->expects($this->any())
->method('get')
->with('disable-tls')
->will($this->returnValue(false));
$downloader = new XzDownloader($io, $config);
$downloader = new XzDownloader($io, $config, null, null, null, new RemoteFilesystem($io));
try {
$downloader->download($packageMock, sys_get_temp_dir().'/composer-xz-test');