about summary refs log tree commit diff stats
path: root/tests/unittests/test_cmd_roster.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-01-31 02:33:44 +0000
committerJames Booth <boothj5@gmail.com>2016-01-31 02:33:44 +0000
commite816b124ee754ba11dfe84710b478388651defdc (patch)
tree65f8264b88e66a8fa4a3e45a9ecb3b0107c575cc /tests/unittests/test_cmd_roster.c
parent369aa5e8a867e3d75f102fb1a7050ccc2a071a8b (diff)
downloadprofani-tty-e816b124ee754ba11dfe84710b478388651defdc.tar.gz
Removed unused arg from roster_get_ functions
Diffstat (limited to 'tests/unittests/test_cmd_roster.c')
-rw-r--r--tests/unittests/test_cmd_roster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/test_cmd_roster.c b/tests/unittests/test_cmd_roster.c
index 8874bdb2..054328be 100644
--- a/tests/unittests/test_cmd_roster.c
+++ b/tests/unittests/test_cmd_roster.c
@@ -55,7 +55,7 @@ void cmd_roster_shows_roster_when_no_args(void **state)
 
     roster_create();
     roster_add("bob@server.org", "bob", NULL, "both", FALSE);
-    GSList *roster = roster_get_contacts(ROSTER_ORD_NAME, TRUE);
+    GSList *roster = roster_get_contacts(ROSTER_ORD_NAME);
 
     expect_memory(cons_show_roster, list, roster, sizeof(roster));