Include missing parameter
Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
parent
0fb85ab2e8
commit
514e1c6356
@ -121,7 +121,7 @@ class PMA_DBI_Drizzle_Test extends PHPUnit_Framework_TestCase
|
||||
$GLOBALS['userlink'] = null;
|
||||
$this->assertEquals(
|
||||
false,
|
||||
$this->object->selectDb("PMA")
|
||||
$this->object->selectDb("PMA", null)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@ -257,7 +257,7 @@ class PMA_DBI_Mysql_Test extends PHPUnit_Framework_TestCase
|
||||
$GLOBALS['userlink'] = null;
|
||||
$this->assertEquals(
|
||||
false,
|
||||
$this->object->selectDb("PMA")
|
||||
$this->object->selectDb("PMA", null)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@ -235,7 +235,7 @@ class PMA_DBI_Mysqli_Test extends PHPUnit_Framework_TestCase
|
||||
$GLOBALS['userlink'] = null;
|
||||
$this->assertEquals(
|
||||
false,
|
||||
$this->object->selectDb("PMA")
|
||||
$this->object->selectDb("PMA", null)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user