1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-05 05:02:44 +02:00

Removed print_r()s that were probably accidentally committed

This commit is contained in:
Deltik 2019-02-07 20:44:25 -06:00
parent 2319e145c3
commit 4d169dd8a0
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637
2 changed files with 1 additions and 10 deletions

2
e107

@ -1 +1 @@
Subproject commit 0f96f7cabddfb4690497fc6b22f25da2f4330de2
Subproject commit 3976b9b4bd8920d9ea59ca34da35927a62d0c761

View File

@ -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']);