diff --git a/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php b/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php index 9743d0d..daec2ac 100644 --- a/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php +++ b/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php @@ -78,7 +78,7 @@ public function providerTestProcess() { $container->setAlias('service', new Alias('mariadb.service')); $data[] = array($prefix . 'MariaDb', $container); - if (!extension_loaded('pdo_sqlite')) { + if (extension_loaded('pdo_sqlite')) { // Check the database driver is the default. $container = $this->getSqliteContainer($service); $data[] = array($prefix . 'Sqlite', $container);