mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Filesystem is not needed as a property for CacheTest
This commit is contained in:
parent
397ae2d7c8
commit
909a679ab5
1 changed files with 2 additions and 6 deletions
|
@ -18,14 +18,9 @@ use Composer\Util\Filesystem;
|
|||
class CacheTest extends TestCase
|
||||
{
|
||||
private $files, $root, $finder, $cache;
|
||||
/**
|
||||
* @var Filesystem
|
||||
*/
|
||||
private $fs;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$this->fs = new Filesystem;
|
||||
if (getenv('TRAVIS')) {
|
||||
$this->markTestSkipped('Test causes intermittent failures on Travis');
|
||||
}
|
||||
|
@ -56,7 +51,8 @@ class CacheTest extends TestCase
|
|||
protected function tearDown()
|
||||
{
|
||||
if (is_dir($this->root)) {
|
||||
$this->fs->removeDirectory($this->root);
|
||||
$fs = new Filesystem;
|
||||
$fs->removeDirectory($this->root);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue