mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 03:40:37 +02:00
Removed print_r()s that were probably accidentally committed
This commit is contained in:
2
e107
2
e107
Submodule e107 updated: 0f96f7cabd...3976b9b4bd
@@ -628,21 +628,12 @@
|
||||
|
||||
$actual = $this->dbv->getSqlFileTables($sql);
|
||||
|
||||
if($table == 'test_json')
|
||||
{
|
||||
print_r($actual);
|
||||
print_r($this->dbv->results);
|
||||
}
|
||||
|
||||
$this->assertEquals($actual['tables'], $expected[$table]['tables'], "Table ".$table." could not be parsed.");
|
||||
|
||||
foreach($expected[$table]['data'] as $k=>$data)
|
||||
{
|
||||
$data = str_replace("\t", '', $data);
|
||||
$this->assertEquals($actual['data'][$k], $data, "Table ".$table."['data'][".$k."] did not match.");
|
||||
|
||||
$fields = $this->dbv->getFields($actual['data'][$k]);
|
||||
print_r($fields);
|
||||
}
|
||||
|
||||
$this->assertEquals($actual['engine'], $expected[$table]['engine']);
|
||||
|
Reference in New Issue
Block a user