Skip to content

Commit 5404725

Browse files
committed
Removing HTML Functionality from run-tests.php
1 parent bce0501 commit 5404725

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

run-tests.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ function main()
702702

703703
compute_summary();
704704
echo "=====================================================================";
705-
echo get_summary(false, false);
705+
echo get_summary(false);
706706

707707
if ($output_file != '' && $just_save_results) {
708708
save_or_mail_results();
@@ -933,7 +933,7 @@ function save_or_mail_results()
933933
$failed_tests_data = '';
934934
$sep = "\n" . str_repeat('=', 80) . "\n";
935935
$failed_tests_data .= $failed_test_summary . "\n";
936-
$failed_tests_data .= get_summary(true, false) . "\n";
936+
$failed_tests_data .= get_summary(true) . "\n";
937937

938938
if ($sum_results['FAILED']) {
939939
foreach ($PHP_FAILED_TESTS['FAILED'] as $test_info) {
@@ -3160,7 +3160,7 @@ function show_end($end_time)
31603160

31613161
function show_summary()
31623162
{
3163-
echo get_summary(true, false);
3163+
echo get_summary(true);
31643164
}
31653165

31663166
function show_redirect_start($tests, $tested, $tested_file)

0 commit comments

Comments
 (0)