diff --git a/tests/unit/Espo/Core/Upgrades/ActionManagerTest.php b/tests/unit/Espo/Core/Upgrades/ActionManagerTest.php index c62de1e79c..c89244e176 100644 --- a/tests/unit/Espo/Core/Upgrades/ActionManagerTest.php +++ b/tests/unit/Espo/Core/Upgrades/ActionManagerTest.php @@ -135,6 +135,8 @@ class ActionManagerTest extends \PHPUnit_Framework_TestCase $class = $this->reflection->invokeMethod('getObject'); $this->assertInstanceOf('\Espo\Core\Upgrades\Actions\Upgrade\Uninstall', $class); + + $class->run(array()); } public function testGetObjectUpgradeDelete() @@ -146,6 +148,8 @@ class ActionManagerTest extends \PHPUnit_Framework_TestCase $class = $this->reflection->invokeMethod('getObject'); $this->assertInstanceOf('\Espo\Core\Upgrades\Actions\Upgrade\Delete', $class); + + $class->run(array()); } }