diff options
author | James Booth <boothj5@gmail.com> | 2013-01-11 00:17:18 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-01-11 00:17:18 +0000 |
commit | 89967905dbc592811493d4c7ba1fda31a8c2b038 (patch) | |
tree | adbb329bb14d849b92f2b00c9c2ae7213a2700ef /tests | |
parent | ce8faa8d34b22a671324d437e7e4737bc9d8a10b (diff) | |
download | profani-tty-89967905dbc592811493d4c7ba1fda31a8c2b038.tar.gz |
Autocomplete: added free function
Fixed tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_contact_list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_contact_list.c b/tests/test_contact_list.c index 4da4093d..f04e80d5 100644 --- a/tests/test_contact_list.c +++ b/tests/test_contact_list.c @@ -191,7 +191,7 @@ static void test_status_when_no_value(void) static void update_show(void) { contact_list_add("James", NULL, "away", NULL, NULL, FALSE); - contact_list_update_contact("James", "dnd", NULL); + contact_list_update_contact("James", "dnd", NULL, NULL); GSList *list = get_contact_list(); assert_int_equals(1, g_slist_length(list)); @@ -203,7 +203,7 @@ static void update_show(void) static void set_show_to_null(void) { contact_list_add("James", NULL, "away", NULL, NULL, FALSE); - contact_list_update_contact("James", NULL, NULL); + contact_list_update_contact("James", NULL, NULL, NULL); GSList *list = get_contact_list(); assert_int_equals(1, g_slist_length(list)); @@ -215,7 +215,7 @@ static void set_show_to_null(void) static void update_status(void) { contact_list_add("James", NULL, NULL, "I'm not here right now", NULL, FALSE); - contact_list_update_contact("James", NULL, "Gone to lunch"); + contact_list_update_contact("James", NULL, "Gone to lunch", NULL); GSList *list = get_contact_list(); assert_int_equals(1, g_slist_length(list)); @@ -227,7 +227,7 @@ static void update_status(void) static void set_status_to_null(void) { contact_list_add("James", NULL, NULL, "Gone to lunch", NULL, FALSE); - contact_list_update_contact("James", NULL, NULL); + contact_list_update_contact("James", NULL, NULL, NULL); GSList *list = get_contact_list(); assert_int_equals(1, g_slist_length(list)); |