From 14f026d09e244025d7e946850dd7144a75ba0023 Mon Sep 17 00:00:00 2001 From: Christian Huitema Date: Thu, 7 Dec 2023 17:38:38 -0800 Subject: [PATCH] Remove unnecessary comments --- picohttp_t/picohttp_t.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/picohttp_t/picohttp_t.c b/picohttp_t/picohttp_t.c index 9e9b0099f..9d92446a9 100644 --- a/picohttp_t/picohttp_t.c +++ b/picohttp_t/picohttp_t.c @@ -268,7 +268,6 @@ int main(int argc, char** argv) if (optind >= argc) { for (size_t i = 0; i < nb_tests; i++) { if (test_status[i] == test_not_run) { - fprintf(stdout, "Test number %d: %s\n", (int)i, test_table[i].test_name); nb_test_tried++; if (do_one_test(i, stdout) != 0) { test_status[i] = test_failed; @@ -294,7 +293,6 @@ int main(int argc, char** argv) } else { nb_test_tried++; - fprintf(stdout, "Test number %d: %s\n", (int)test_number, test_table[test_number].test_name); if (do_one_test(test_number, stdout) != 0) { test_status[test_number] = test_failed; nb_test_failed++;