mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
graceful teardown of cache
This commit is contained in:
parent
073464af0b
commit
4ecca9e97b
1 changed files with 3 additions and 1 deletions
4
tests/lib/files/cache/cache.php
vendored
4
tests/lib/files/cache/cache.php
vendored
|
|
@ -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…
Reference in a new issue