Commit a89068c6 authored by Mickael PERRAUD's avatar Mickael PERRAUD

Fix a notice during if not realized with pgsql

parent 8f0e4973
......@@ -47,7 +47,7 @@ class DriverTest extends AbstractDriverTest
public function getDatabaseParameter()
{
$params = TestUtil::getConnection()->getParams();
$realDatabaseName = $params['dbname'];
$realDatabaseName = isset($params['dbname']) ? $params['dbname'] : '';
$dummyDatabaseName = $realDatabaseName . 'a';
return array(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment