From d167cb9ec871e5b3796d19b93fbe8110f1cef32c Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Tue, 30 Jun 2020 20:55:51 +0900 Subject: [PATCH] Fix db_type in install cept --- tests/install/InstallCept.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/install/InstallCept.php b/tests/install/InstallCept.php index 41ce1a164..aa2c57bb1 100644 --- a/tests/install/InstallCept.php +++ b/tests/install/InstallCept.php @@ -44,10 +44,10 @@ $I->click('#task-checklist-confirm'); // Step 3 : DB Setup $I->seeInCurrentUrl('act=dispInstallDBConfig'); -$I->seeElement('select[name="db_type"]'); +$I->seeElement('input[name="db_host"]'); $I->submitForm('#body', [ 'act' => 'procDBConfig', - 'db_type' => 'mysqli', + 'db_type' => 'mysql', 'db_host' => $dbinfo['host'], 'db_port' => $dbinfo['port'], 'db_user' => $dbinfo['user'],