delete array after test completion

This commit is contained in:
2026-07-10 04:17:51 -05:00
parent da792dda8a
commit 34b49d6090
2 changed files with 2 additions and 1 deletions

View File

@@ -27,5 +27,6 @@ int test_l_array() {
if (array->items != NULL) RETURN_CODE++;
printf("%d\n", RETURN_CODE);
l_array_delete(array);
return RETURN_CODE;
}