# HG changeset patch
# User Mike Becker <universe@uap-core.de>
# Date 1640710192 -3600
# Node ID 6d538177f7460c678d26265242346bc0b373d2a1
# Parent  e66551b47466234acad221d4dddd47c1f853d1a3
fix missing cleanup in test_hl_linked_list_from_array

diff -r e66551b47466 -r 6d538177f746 test/test_list.c
--- a/test/test_list.c	Tue Dec 28 17:41:51 2021 +0100
+++ b/test/test_list.c	Tue Dec 28 17:49:52 2021 +0100
@@ -581,6 +581,10 @@
     CxList list = cxLinkedListFromArray(cxTestingAllocator, (CxListComparator) cmp_int, sizeof(int), 5, data);
 
     CU_ASSERT_TRUE(0 == cxListCompare(list, expected))
+
+    cxLinkedListDestroy(list);
+    cxLinkedListDestroy(expected);
+    CU_ASSERT_TRUE(cxTestingAllocatorVerify())
 }
 
 void test_hl_linked_list_add(void) {