From 3da0a92573a4e61a7ec2d9796a17f5c7e3bda63e Mon Sep 17 00:00:00 2001 From: Damien Harper Date: Thu, 23 Feb 2023 01:02:08 +0100 Subject: [PATCH] Fixed failing test --- tests/App/Command/CreatePostCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }