mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing message for completed test cases
This commit is contained in:
parent
d3837ba7b0
commit
3f881aee35
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
|
|||
echo "<div style=\"";
|
||||
echo "padding: 8px; margin: 1em 0; background-color: $colour; color: white;";
|
||||
echo "\">";
|
||||
echo $result->count() . "/" . ($result->count() - $result->skippedCount());
|
||||
echo ($result->count() - $result->skippedCount()) . "/" . $result->count();
|
||||
echo " test methods complete:\n";
|
||||
echo "<strong>" . count($result->passed()) . "</strong> passes, ";
|
||||
echo "<strong>" . $result->failureCount() . "</strong> fails, ";
|
||||
|
|
Loading…
Reference in a new issue