Merge pull request #3822 from owncloud/graceful_teardown_of_cache
graceful teardown of cache
This commit is contained in:
commit
993a1f1976
|
@ -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 New Issue