mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 09:32:15 +09:00
Fix unit tests for PHP 7.2
This commit is contained in:
parent
b6557622d2
commit
89fcea58c9
4 changed files with 11 additions and 11 deletions
|
|
@ -28,7 +28,7 @@ $install_config = array(
|
|||
'db_userid' => $dbinfo['user'],
|
||||
'db_password' => $dbinfo['password'],
|
||||
'db_database' => $dbinfo['dbname'],
|
||||
'db_table_prefix' =>'rx',
|
||||
'db_table_prefix' =>'rx_auto',
|
||||
'db_charset' => 'utf8',
|
||||
'use_rewrite' =>'N',
|
||||
'time_zone' =>'0900',
|
||||
|
|
|
|||
|
|
@ -47,13 +47,13 @@ $I->seeInCurrentUrl('act=dispInstallDBConfig');
|
|||
$I->seeElement('select[name="db_type"]');
|
||||
$I->submitForm('#body', [
|
||||
'act' => 'procDBConfig',
|
||||
'db_type' => 'mysqli_innodb',
|
||||
'db_type' => 'mysqli',
|
||||
'db_host' => $dbinfo['host'],
|
||||
'db_port' => $dbinfo['port'],
|
||||
'db_user' => $dbinfo['user'],
|
||||
'db_pass' => $dbinfo['password'],
|
||||
'db_database' => $dbinfo['dbname'],
|
||||
'db_prefix' => 'rx'
|
||||
'db_prefix' => 'rx',
|
||||
]);
|
||||
|
||||
// Step 4 : Create Admin Account
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue