don't throw fatal error in updater cache if setup failed for some reason

remotes/origin/stable5
Robin Appelman 13 years ago
parent 810563ae8a
commit 8ce5e0d30d
  1. 4
      tests/lib/files/cache/updater.php

@ -61,7 +61,9 @@ class Updater extends \PHPUnit_Framework_TestCase {
}
public function tearDown() {
$this->cache->clear();
if($this->cache){
$this->cache->clear();
}
Filesystem::tearDown();
}

Loading…
Cancel
Save