From b9d116db681034574b82074ecb92c16cbaedfb0f Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Tue, 30 Jun 2020 20:50:28 +0900 Subject: [PATCH] Update db_type in autoinstall cept --- tests/install/AutoinstallCept.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/install/AutoinstallCept.php b/tests/install/AutoinstallCept.php index 0ed9e9429..da3e6ed91 100644 --- a/tests/install/AutoinstallCept.php +++ b/tests/install/AutoinstallCept.php @@ -11,7 +11,7 @@ $dsn = $db_config['dsn']; $dsn = preg_split('/[;:]/', $dsn); $db_type = array_shift($dsn); $dbinfo = [ - 'type' => (($db_type === 'mysql') ? 'mysqli' : $db_type), + 'type' => $db_type, 'user' => $db_config['user'], 'password' => $db_config['password'], 'port' => ((isset($db_config['port']) && $db_config['port'])?: 3306),