Skip to content

Commit

Permalink
testing action
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGAzed committed Dec 31, 2024
1 parent 2b4d9d6 commit c8519dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/double_list/infinite_allocated_double_list_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,9 @@ TEST IADL_22(void) {
insert_at_double_list(&test, i, (DOUBLE_LIST_DATA_TYPE) { .sub_one = i });
}

ASSERT_EQm("[IADL-ERROR] Expected middle element to be list size divided by 2", test.size / 2, remove_at_double_list(&test, test.size / 2).sub_one);
printf("%zu ==", test.size / 2);
printf("%d ", remove_at_double_list(&test, test.size / 2).sub_one);
//ASSERT_EQm("[IADL-ERROR] Expected middle element to be list size divided by 2", test.size / 2, remove_at_double_list(&test, test.size / 2).sub_one);

destroy_double_list(&test, NULL);

Expand Down

0 comments on commit c8519dc

Please sign in to comment.