completion-test: Fix leaks in tests

https://bugzilla.gnome.org/show_bug.cgi?id=711751
This commit is contained in:
Stef Walter 2013-11-09 20:25:39 +01:00
parent ba56c7b720
commit ee743674a1

View File

@ -42,6 +42,7 @@ int main (int argc, char *argv[])
items = g_list_append (items, "bb");
items = g_list_append (items, "bc");
g_completion_add_items (cmp, items);
g_list_free (items);
items = g_completion_complete (cmp, "a", &prefix);
g_assert (!strcmp ("a\302", prefix));
@ -71,6 +72,7 @@ int main (int argc, char *argv[])
items = g_list_append (NULL, "bb");
g_completion_remove_items (cmp, items);
g_list_free (items);
items = g_completion_complete_utf8 (cmp, "b", &prefix);
g_assert (g_list_length (items) == 1);