From a7fe79dacd1a1a968ba556ce8962e33141665d35 Mon Sep 17 00:00:00 2001 From: Yassine Guedidi Date: Mon, 22 Jan 2024 10:35:58 +0100 Subject: [PATCH] Make reset database drop full database --- tests/Wallabag/CoreBundle/WallabagCoreTestCase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php b/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php index ce02791cc..dbe19ffe9 100644 --- a/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php +++ b/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php @@ -48,6 +48,7 @@ abstract class WallabagCoreTestCase extends WebTestCase 'command' => 'doctrine:schema:drop', '--no-interaction' => true, '--force' => true, + '--full-database' => true, '--env' => 'test', ]), new NullOutput());