diff --git a/tests/cc.php b/tests/cc.php
index 314f2a9dd..5b65d911c 100644
--- a/tests/cc.php
+++ b/tests/cc.php
@@ -172,7 +172,7 @@ class Doctrine_Coverage_Report
if(isset($_GET["desc"]) && $_GET["desc"] == "true"){
$coveredArray = array_reverse($coveredArray, true);
}
- echo "
" . TOTAL . " | " . round((($totalcovered + $totalmaybe) / $totallines) * 100, 2) . " % | $totallines | $totalcovered | $totalmaybe | $totaldead | |
";
+ echo "" . TOTAL . " | " . round((($totalcovered + $totalmaybe) / $totallines) * 100, 2) . " % | $totallines | $totalcovered | $totalmaybe | $totalnotcovered | |
";
foreach($coveredArray as $class => $info){
$fileName = str_replace("_", "/", $class) . ".php";
echo "" . $class . " | " . $info["percentage"] . " % | " . $info["total"] . " | " . $info["covered"] . " | " . $info["maybe"] . " | " . $info["notcovered"]. " | coverage |
";