From: Michael Date: Sun, 8 Nov 2020 17:26:20 +0000 (+0000) Subject: Disable PDO for the AppMode test as well X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f23ec66801f37169b8ef9d5100409f8795047a67;p=friendica.git Disable PDO for the AppMode test as well --- diff --git a/tests/functional/DependencyCheckTest.php b/tests/functional/DependencyCheckTest.php index 62816f4c73..fcd3ca521f 100644 --- a/tests/functional/DependencyCheckTest.php +++ b/tests/functional/DependencyCheckTest.php @@ -136,6 +136,9 @@ class DependencyCheckTest extends TestCase public function testAppMode() { + $configCache = $this->dice->create(Cache::class); + $configCache->set('database', 'disable_pdo', true); + /** @var App\Mode $mode */ $mode = $this->dice->create(App\Mode::class);