💚 Fix unit tests

This commit is contained in:
Eric
2019-10-16 11:36:01 +02:00
parent 65512ca984
commit fbc5280add
26 changed files with 964 additions and 359 deletions

View File

@@ -261,7 +261,7 @@ case 'zoom':
{
$aExplain = CMDBSource::ExplainQuery($oQuery->sSql);
$oP->add("<h4>Explain</h4>\n");
$oP->add("<table border=\"1\">\n");
$oP->add("<table style=\"border=1px;\">\n");
foreach ($aExplain as $aRow)
{
$oP->add(" <tr>\n");
@@ -274,7 +274,7 @@ case 'zoom':
if (count($oQuery->aRows))
{
$oP->add("<h4>Values</h4>\n");
$oP->add("<table border=\"1\">\n");
$oP->add("<table style=\"border=1px;\">\n");
foreach ($oQuery->aRows as $iRow => $aRow)
{
$oP->add(" <tr>\n");
@@ -352,4 +352,4 @@ case 'benchmark':
}
$oP->output();
?>
?>