diff options
Diffstat (limited to 'tests/check-empathy-chatroom.c')
-rw-r--r-- | tests/check-empathy-chatroom.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/check-empathy-chatroom.c b/tests/check-empathy-chatroom.c index f68803122..e0cb685cb 100644 --- a/tests/check-empathy-chatroom.c +++ b/tests/check-empathy-chatroom.c @@ -19,12 +19,6 @@ create_chatroom (void) chatroom = empathy_chatroom_new (account); fail_if (chatroom == NULL); - /* destroy the account as we don't have to add it to the accounts - * configuration */ - /* FIXME: the account is not really removed */ - mc_account_delete (account); - g_object_unref (account); - return chatroom; } @@ -42,6 +36,7 @@ START_TEST (test_empathy_chatroom_new) fail_if (auto_connect); fail_if (favorite); + destroy_test_account (empathy_chatroom_get_account (chatroom)); g_object_unref (chatroom); } END_TEST @@ -114,6 +109,7 @@ START_TEST (test_favorite_and_auto_connect) fail_if (auto_connect); fail_if (favorite); + destroy_test_account (empathy_chatroom_get_account (chatroom)); g_object_unref (chatroom); } END_TEST |