Merge pull request #3822 from owncloud/graceful_teardown_of_cache

graceful teardown of cache
remotes/origin/stable6
Thomas Müller 12 years ago
commit 993a1f1976
  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