ignore errors during cleanup

This commit is contained in:
Robin Appelman 2020-05-11 16:05:46 +02:00
commit 43e2bd5966

View file

@ -34,7 +34,11 @@ abstract class AbstractShareTest extends TestCase {
public function tearDown() {
try {
if ($this->share) {
try {
$this->cleanDir($this->root);
} catch (\Exception $e) {
// ignore
}
}
unset($this->share);
} catch (\Exception $e) {