graceful teardown of cache

remotes/origin/stable6
Jörn Friedrich Dreyer 12 years ago
parent 073464af0b
commit 4ecca9e97b
  1. 4
      tests/lib/files/cache/cache.php

@ -348,7 +348,9 @@ class Cache extends \PHPUnit_Framework_TestCase {
}
public function tearDown() {
$this->cache->clear();
if ($this->cache) {
$this->cache->clear();
}
}
public function setUp() {

Loading…
Cancel
Save