From f23ec66801f37169b8ef9d5100409f8795047a67 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 8 Nov 2020 17:26:20 +0000 Subject: [PATCH] Disable PDO for the AppMode test as well --- tests/functional/DependencyCheckTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/functional/DependencyCheckTest.php b/tests/functional/DependencyCheckTest.php index 62816f4c7..fcd3ca521 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);