From fcd68742666c82b975bf2f3e4819da0f49bfa0fc Mon Sep 17 00:00:00 2001 From: Jonas Staudenmeir Date: Tue, 20 Feb 2024 01:14:29 +0100 Subject: [PATCH] Remove workaround for MariaDB integration tests --- tests/Integration/Database/DatabaseTestCase.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/Integration/Database/DatabaseTestCase.php b/tests/Integration/Database/DatabaseTestCase.php index 31ec210d5699..14f78bd71e0a 100644 --- a/tests/Integration/Database/DatabaseTestCase.php +++ b/tests/Integration/Database/DatabaseTestCase.php @@ -32,10 +32,5 @@ protected function defineEnvironment($app) $connection = $app['config']->get('database.default'); $this->driver = $app['config']->get("database.connections.$connection.driver"); - - // TODO: Adjust orchestra/testbench-core/laravel/config/database.php - if ($connection === 'mariadb') { - $this->driver = 'mariadb'; - } } }