From 5a5a246ae73f3de0ca65345199d3947ab93ab11f Mon Sep 17 00:00:00 2001 From: Yassine Guedidi Date: Sun, 21 Jan 2024 01:54:08 +0100 Subject: [PATCH] Use getNewClient() instead of a call to parent::setUp() --- tests/Command/InstallCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Command/InstallCommandTest.php b/tests/Command/InstallCommandTest.php index b2a9ac52d..3cf3d2ad6 100644 --- a/tests/Command/InstallCommandTest.php +++ b/tests/Command/InstallCommandTest.php @@ -48,7 +48,7 @@ class InstallCommandTest extends WallabagTestCase putenv("DATABASE_URL=sqlite:///$databasePath?charset=utf8"); // The environnement has been changed, recreate the client in order to update connection - parent::setUp(); + $this->getNewClient(); } $this->resetDatabase($this->getTestClient());