Skip to content

Commit

Permalink
Remove unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
huitema committed Dec 8, 2023
1 parent 080ddeb commit 14f026d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions picohttp_t/picohttp_t.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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++;
Expand Down

0 comments on commit 14f026d

Please sign in to comment.