diff --git a/tests/App/Command/CreatePostCommand.php b/tests/App/Command/CreatePostCommand.php index 0d4b649d..ecdc8fa2 100644 --- a/tests/App/Command/CreatePostCommand.php +++ b/tests/App/Command/CreatePostCommand.php @@ -44,6 +44,6 @@ protected function execute(InputInterface $input, OutputInterface $output): int $entityManager->persist($post); $entityManager->flush(); - return self::SUCCESS; + return 0; } }