Skip to content
Snippets Groups Projects
Commit 82171eab authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

fix database configuration directives

parent 2fb6825f
No related branches found
No related tags found
No related merge requests found
......@@ -36,9 +36,9 @@ SKIP: {
$ENV{TEST_DB_HOST} &&
$ENV{TEST_DB_NAME};
my $name = $ENV{TEST_DB_TYPE};
my $host = $ENV{TEST_DB_HOST};
my $type = $ENV{TEST_DB_TYPE};
my $host = $ENV{TEST_DB_HOST};
my $name = $ENV{TEST_DB_NAME};
my $username = $ENV{TEST_DB_USERNAME} || '';
my $password = $ENV{TEST_DB_PASSWORD} || '';
......@@ -59,7 +59,7 @@ account_validity_period = 2
type = $type
host = $host
name = $name
user = $username
username = $username
password = $password
EOF
$config_file->flush();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment