mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 23:13:15 +00:00
Fix installer test using proper mysql host.
This commit is contained in:
@@ -55,8 +55,8 @@ class InstallerTest extends \PhraseanetTestCase
|
|||||||
});
|
});
|
||||||
|
|
||||||
$abInfo = [
|
$abInfo = [
|
||||||
'host' => 'localhost',
|
'host' => $credentials['host'],
|
||||||
'port' => 3306,
|
'port' => $credentials['port'],
|
||||||
'user' => $credentials['user'],
|
'user' => $credentials['user'],
|
||||||
'password' => $credentials['password'],
|
'password' => $credentials['password'],
|
||||||
'dbname' => 'ab_setup_test',
|
'dbname' => 'ab_setup_test',
|
||||||
@@ -64,8 +64,8 @@ class InstallerTest extends \PhraseanetTestCase
|
|||||||
|
|
||||||
$abConn = $app['dbal.provider']($abInfo);
|
$abConn = $app['dbal.provider']($abInfo);
|
||||||
$dbConn = $app['dbal.provider']([
|
$dbConn = $app['dbal.provider']([
|
||||||
'host' => 'localhost',
|
'host' => $credentials['host'],
|
||||||
'port' => 3306,
|
'port' => $credentials['port'],
|
||||||
'user' => $credentials['user'],
|
'user' => $credentials['user'],
|
||||||
'password' => $credentials['password'],
|
'password' => $credentials['password'],
|
||||||
'dbname' => 'db_setup_test',
|
'dbname' => 'db_setup_test',
|
||||||
|
Reference in New Issue
Block a user