]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - tests/Wallabag/CoreBundle/WallabagCoreTestCase.php
fixup! Debug MySQL failing
[github/wallabag/wallabag.git] / tests / Wallabag / CoreBundle / WallabagCoreTestCase.php
index 50361039ebd14a3f8d7e36f3bb0cf8f595aec5a1..7db9fca1420c1f955863a08b89a5e419484af27d 100644 (file)
@@ -8,7 +8,6 @@ use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
 use Symfony\Component\BrowserKit\Cookie;
 use Symfony\Component\Console\Input\ArrayInput;
 use Symfony\Component\Console\Output\BufferedOutput;
-use Symfony\Component\Console\Output\NullOutput;
 use Wallabag\CoreBundle\Entity\Config;
 use Wallabag\UserBundle\Entity\User;
 
@@ -51,7 +50,8 @@ abstract class WallabagCoreTestCase extends WebTestCase
 
         if (0 !== $exitCode) {
             var_dump('doctrine:schema:drop');
-            var_export($output->fetch()); die();
+            var_export($output->fetch());
+            die();
         }
 
         $output = new BufferedOutput();
@@ -63,7 +63,8 @@ abstract class WallabagCoreTestCase extends WebTestCase
 
         if (0 !== $exitCode) {
             var_dump('doctrine:schema:create');
-            var_export($output->fetch()); die();
+            var_export($output->fetch());
+            die();
         }
 
         $output = new BufferedOutput();
@@ -75,7 +76,8 @@ abstract class WallabagCoreTestCase extends WebTestCase
 
         if (0 !== $exitCode) {
             var_dump('doctrine:fixtures:load');
-            var_export($output->fetch()); die();
+            var_export($output->fetch());
+            die();
         }
 
         /*