summaryrefslogtreecommitdiffstats
path: root/test/php/library/Director/Objects/IcingaCommandTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/php/library/Director/Objects/IcingaCommandTest.php')
-rw-r--r--test/php/library/Director/Objects/IcingaCommandTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/php/library/Director/Objects/IcingaCommandTest.php b/test/php/library/Director/Objects/IcingaCommandTest.php
index 8e564d8..e3c9d89 100644
--- a/test/php/library/Director/Objects/IcingaCommandTest.php
+++ b/test/php/library/Director/Objects/IcingaCommandTest.php
@@ -206,11 +206,13 @@ class IcingaCommandTest extends BaseTestCase
return file_get_contents(__DIR__ . '/rendered/' . $name . '.out');
}
- public function tearDown()
+ public function tearDown(): void
{
$db = $this->getDb();
if (IcingaCommand::exists($this->testCommandName, $db)) {
IcingaCommand::load($this->testCommandName, $db)->delete();
}
+
+ parent::tearDown();
}
}