summaryrefslogtreecommitdiffstats
path: root/tests/mocks/database/config/mysqli.php
diff options
context:
space:
mode:
authorsapics <gv.nishino@gmail.com>2021-01-16 08:13:37 +0100
committersapics <gv.nishino@gmail.com>2021-01-22 10:34:23 +0100
commit5ad670dea78cc0f0c0fd690220a243a905cb06bf (patch)
tree2ccb6680e9a19da37762083c613dc11157779951 /tests/mocks/database/config/mysqli.php
parent624ddad97028087ee4d61ab90827b944a192f65e (diff)
Replace travis-ci to github actions for php8.0
Diffstat (limited to 'tests/mocks/database/config/mysqli.php')
-rw-r--r--tests/mocks/database/config/mysqli.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/mocks/database/config/mysqli.php b/tests/mocks/database/config/mysqli.php
index 5dd08abb2..fd8fec962 100644
--- a/tests/mocks/database/config/mysqli.php
+++ b/tests/mocks/database/config/mysqli.php
@@ -5,9 +5,9 @@ return array(
// Typical Database configuration
'mysqli' => array(
'dsn' => '',
- 'hostname' => 'localhost',
+ 'hostname' => '127.0.0.1',
'username' => 'travis',
- 'password' => '',
+ 'password' => 'travis',
'database' => 'ci_test',
'dbdriver' => 'mysqli'
),
@@ -15,7 +15,7 @@ return array(
// Database configuration with failover
'mysqli_failover' => array(
'dsn' => '',
- 'hostname' => 'localhost',
+ 'hostname' => '127.0.0.1',
'username' => 'not_travis',
'password' => 'wrong password',
'database' => 'not_ci_test',
@@ -23,9 +23,9 @@ return array(
'failover' => array(
array(
'dsn' => '',
- 'hostname' => 'localhost',
+ 'hostname' => '127.0.0.1',
'username' => 'travis',
- 'password' => '',
+ 'password' => 'travis',
'database' => 'ci_test',
'dbdriver' => 'mysqli',
)