Fix factory test
parent
1cd9f4f9db
commit
09fd239f24
|
@ -32,6 +32,7 @@ class HttpDownloader
|
||||||
private $io;
|
private $io;
|
||||||
private $config;
|
private $config;
|
||||||
private $jobs = array();
|
private $jobs = array();
|
||||||
|
private $options = array();
|
||||||
private $index;
|
private $index;
|
||||||
private $progress;
|
private $progress;
|
||||||
private $lastProgress;
|
private $lastProgress;
|
||||||
|
|
|
@ -35,6 +35,6 @@ class FactoryTest extends TestCase
|
||||||
->with($this->equalTo('disable-tls'))
|
->with($this->equalTo('disable-tls'))
|
||||||
->will($this->returnValue(true));
|
->will($this->returnValue(true));
|
||||||
|
|
||||||
Factory::createRemoteFilesystem($ioMock, $config);
|
Factory::createHttpDownloader($ioMock, $config);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue