about summary refs log tree commit diff stats
path: root/tests/test_muc.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_muc.c')
-rw-r--r--tests/test_muc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_muc.c b/tests/test_muc.c
index 3a8da50a..2af13516 100644
--- a/tests/test_muc.c
+++ b/tests/test_muc.c
@@ -15,6 +15,8 @@ void test_muc_add_invite(void **state)
     gboolean invite_exists = muc_invites_include(room);
 
     assert_true(invite_exists);
+
+    muc_close();
 }
 
 void test_muc_remove_invite(void **state)
@@ -27,4 +29,6 @@ void test_muc_remove_invite(void **state)
     gboolean invite_exists = muc_invites_include(room);
 
     assert_false(invite_exists);
+
+    muc_close();
 }