about summary refs log tree commit diff stats
path: root/tests/test_roster_list.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-12-14 17:15:43 +0000
committerJames Booth <boothj5@gmail.com>2013-12-14 17:15:43 +0000
commit3e3786eb613ec869954e0bb9b5e4e630f15aaa63 (patch)
tree70113020af9d7777901708fb9cad29037188deaf /tests/test_roster_list.c
parent0b3a9f5785e0e6e09c2760a6c6ab220bd08f80d4 (diff)
downloadprofani-tty-3e3786eb613ec869954e0bb9b5e4e630f15aaa63.tar.gz
Removed debug from tests
Diffstat (limited to 'tests/test_roster_list.c')
-rw-r--r--tests/test_roster_list.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_roster_list.c b/tests/test_roster_list.c
index b65d9f83..4a78d877 100644
--- a/tests/test_roster_list.c
+++ b/tests/test_roster_list.c
@@ -20,13 +20,9 @@ void empty_list_when_none_added(void **state)
 void contains_one_element(void **state)
 {
     roster_init();
-    printf("0\n");
     roster_add("James", NULL, NULL, NULL, FALSE, TRUE);
-    printf("1\n");
     GSList *list = roster_get_contacts();
-    printf("2\n");
     assert_int_equal(1, g_slist_length(list));
-    printf("3\n");
     roster_free();
 }