summaryrefslogtreecommitdiffstats
path: root/appinfo/register_command.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-11-25 19:52:04 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-11-25 19:52:22 +0100
commit79736eb1cf6abacb2b79c8b8f8ca52d1cfcc6715 (patch)
tree46831c06aa2e7577e091e4d5109371a56718a844 /appinfo/register_command.php
parent052178a79f9099d1ce3c36e56334cdc15911ef09 (diff)
fix tests
Diffstat (limited to 'appinfo/register_command.php')
-rw-r--r--appinfo/register_command.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/appinfo/register_command.php b/appinfo/register_command.php
index dc6b4fe31..91e379525 100644
--- a/appinfo/register_command.php
+++ b/appinfo/register_command.php
@@ -9,12 +9,12 @@
* @copyright Bernhard Posselt 2015
*/
-use OCA\News\Command\GenerateSearchIndices;
+use OCA\News\Command\Migrate;
use OCA\News\Command\VerifyInstall;
$newsApp = new OCA\News\AppInfo\Application();
$newsContainer = $newsApp->getContainer();
-$newsCmd = $newsContainer->query(GenerateSearchIndices::class);
+$newsCmd = $newsContainer->query(Migrate::class);
$verifyCmd = $newsContainer->query(VerifyInstall::class);
$application->add($newsCmd);