diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gallery_unit_test/views/kohana_unit_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery_unit_test/views/kohana_unit_test.php b/modules/gallery_unit_test/views/kohana_unit_test.php index a6149986..e11f13bf 100644 --- a/modules/gallery_unit_test/views/kohana_unit_test.php +++ b/modules/gallery_unit_test/views/kohana_unit_test.php @@ -3,7 +3,7 @@ foreach ($results as $class => $methods) { echo "+", str_repeat("-", 98), "+\n"; printf("| %-96.96s |\n", $class); - echo "+", str_repeat("-", 98), "+\n"; + echo "+", str_repeat("-", 57), "+", str_repeat("-", 40), "+\n"; foreach (array("score", "total", "passed", "failed", "errors") as $key) { @$totals[$key] += $stats[$class][$key]; @@ -41,7 +41,7 @@ foreach ($results as $class => $methods) { } } - echo "+", str_repeat("=", 98), "+\n"; + echo "+", str_repeat("=", 57), "+", str_repeat("=", 40), "+\n"; printf("| %-40.40s %-13.13s %-13.13s %-13.13s %-13.13s |\n", $class, "Score: {$stats[$class]['score']}", |