Skip to content

Commit

Permalink
fix: remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelF44 committed Jun 22, 2024
1 parent 402d66a commit a357545
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/server/tests/communication/communication_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,27 +196,18 @@ Test(communication, add_gui, .timeout = 5)
parsing->names[0] = strdup("team 1\r");
parsing->names[1] = strdup("team 2\r");
parsing->names[2] = NULL;
printf("\nHERE\n");
app_t *app = create_app(parsing);
printf("\nHERE 1\n");

cr_assert_not_null(app);
printf("\nHERE 2\n");
node_data_t data;
data.client = create_client(1);
printf("\nHERE 3\n");
list_add_back(app->clients_list, data);
node_data_t data1;
printf("\nHERE 4\n");
data1.client = create_client(1);
printf("\nHERE 5\n");
list_add_back(app->clients_list, data1);
printf("\nHERE 6\n");
add_gui(app, 1, strdup("TEST\n"));

printf("\nHERE 7\n");
cr_assert_not_null(app->gui_list->first);
printf("\nHERE 8\n");
destroy_app(app);
}

Expand Down

0 comments on commit a357545

Please sign in to comment.