1
0
Fork 0

Fix factory test

pull/7904/head
Jordi Boggiano 2018-11-12 16:19:06 +01:00
parent 1cd9f4f9db
commit 09fd239f24
2 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@ class HttpDownloader
private $io;
private $config;
private $jobs = array();
private $options = array();
private $index;
private $progress;
private $lastProgress;

View File

@ -35,6 +35,6 @@ class FactoryTest extends TestCase
->with($this->equalTo('disable-tls'))
->will($this->returnValue(true));
Factory::createRemoteFilesystem($ioMock, $config);
Factory::createHttpDownloader($ioMock, $config);
}
}