summaryrefslogtreecommitdiffstats
path: root/library/Director/Test/IcingaObjectTestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/Director/Test/IcingaObjectTestCase.php')
-rw-r--r--library/Director/Test/IcingaObjectTestCase.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/library/Director/Test/IcingaObjectTestCase.php b/library/Director/Test/IcingaObjectTestCase.php
index a37fced..5d0dde3 100644
--- a/library/Director/Test/IcingaObjectTestCase.php
+++ b/library/Director/Test/IcingaObjectTestCase.php
@@ -76,7 +76,7 @@ abstract class IcingaObjectTestCase extends BaseTestCase
/**
* @inheritdoc
*/
- public function tearDown()
+ public function tearDown(): void
{
if ($this->hasDb()) {
/** @var IcingaObject $object */
@@ -88,5 +88,7 @@ abstract class IcingaObjectTestCase extends BaseTestCase
$this->subject->delete();
}
}
+
+ parent::tearDown();
}
}