Pass correct parameters to _getFromClause

This commit is contained in:
Michal Čihař 2012-09-04 15:09:11 +02:00
parent d233182d3b
commit ff9b0d088c

View File

@ -376,10 +376,10 @@ class PMA_DBQbe_test extends PHPUnit_Framework_TestCase
*/
public function testGetFromClause(){
$this->assertEquals(
'`table1`',
'table1',
$this->_callProtectedFunction(
'_getFromClause',
array('relation')
array(array('relwork' => False))
)
);
}