Browse Source

xz test tweak

Jordi Boggiano 9 years ago
parent
commit
e6f1c13d00
1 changed files with 2 additions and 5 deletions
  1. 2 5
      tests/Composer/Test/Downloader/XzDownloaderTest.php

+ 2 - 5
tests/Composer/Test/Downloader/XzDownloaderTest.php

@@ -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');