mirror of
https://github.com/profanity-im/profanity.git
synced 2024-10-27 20:30:13 -04:00
First destroy roster then free list in test_cmd_roster
This commit is contained in:
parent
9b3517c21e
commit
a10ab4e692
@ -57,8 +57,8 @@ void cmd_roster_shows_roster_when_no_args(void **state)
|
|||||||
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
|
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
|
||||||
assert_true(result);
|
assert_true(result);
|
||||||
|
|
||||||
g_slist_free(roster);
|
|
||||||
roster_destroy();
|
roster_destroy();
|
||||||
|
g_slist_free(roster);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmd_roster_add_shows_message_when_no_jid(void **state)
|
void cmd_roster_add_shows_message_when_no_jid(void **state)
|
||||||
@ -178,8 +178,8 @@ void cmd_roster_nick_sends_name_change_request(void **state)
|
|||||||
PContact contact = roster_get_contact(jid);
|
PContact contact = roster_get_contact(jid);
|
||||||
assert_string_equal(p_contact_name(contact), nick);
|
assert_string_equal(p_contact_name(contact), nick);
|
||||||
|
|
||||||
g_slist_free(groups);
|
|
||||||
roster_destroy();
|
roster_destroy();
|
||||||
|
g_slist_free(groups);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmd_roster_clearnick_shows_message_when_no_jid(void **state)
|
void cmd_roster_clearnick_shows_message_when_no_jid(void **state)
|
||||||
@ -234,6 +234,6 @@ void cmd_roster_clearnick_sends_name_change_request_with_empty_nick(void **state
|
|||||||
PContact contact = roster_get_contact(jid);
|
PContact contact = roster_get_contact(jid);
|
||||||
assert_null(p_contact_name(contact));
|
assert_null(p_contact_name(contact));
|
||||||
|
|
||||||
g_slist_free(groups);
|
|
||||||
roster_destroy();
|
roster_destroy();
|
||||||
|
g_slist_free(groups);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user