about summary refs log tree commit diff stats
path: root/tests/unittests/test_cmd_statuses.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unittests/test_cmd_statuses.c')
-rw-r--r--tests/unittests/test_cmd_statuses.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/unittests/test_cmd_statuses.c b/tests/unittests/test_cmd_statuses.c
index ed37021a..0ecb22ae 100644
--- a/tests/unittests/test_cmd_statuses.c
+++ b/tests/unittests/test_cmd_statuses.c
@@ -21,7 +21,7 @@ void cmd_statuses_shows_usage_when_bad_subcmd(void **state)
 
     expect_cons_show("Usage: some usage");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
     assert_true(result);
 
     free(help);
@@ -35,7 +35,7 @@ void cmd_statuses_shows_usage_when_bad_console_setting(void **state)
 
     expect_cons_show("Usage: some usage");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
     assert_true(result);
 
     free(help);
@@ -49,7 +49,7 @@ void cmd_statuses_shows_usage_when_bad_chat_setting(void **state)
 
     expect_cons_show("Usage: some usage");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
     assert_true(result);
 
     free(help);
@@ -63,7 +63,7 @@ void cmd_statuses_shows_usage_when_bad_muc_setting(void **state)
 
     expect_cons_show("Usage: some usage");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
     assert_true(result);
 
     free(help);
@@ -76,7 +76,7 @@ void cmd_statuses_console_sets_all(void **state)
 
     expect_cons_show("All presence updates will appear in the console.");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
 
     char *setting = prefs_get_string(PREF_STATUSES_CONSOLE);
     assert_non_null(setting);
@@ -93,7 +93,7 @@ void cmd_statuses_console_sets_online(void **state)
 
     expect_cons_show("Only online/offline presence updates will appear in the console.");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
 
     char *setting = prefs_get_string(PREF_STATUSES_CONSOLE);
     assert_non_null(setting);
@@ -110,7 +110,7 @@ void cmd_statuses_console_sets_none(void **state)
 
     expect_cons_show("Presence updates will not appear in the console.");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
 
     char *setting = prefs_get_string(PREF_STATUSES_CONSOLE);
     assert_non_null(setting);
@@ -127,7 +127,7 @@ void cmd_statuses_chat_sets_all(void **state)
 
     expect_cons_show("All presence updates will appear in chat windows.");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
 
     char *setting = prefs_get_string(PREF_STATUSES_CHAT);
     assert_non_null(setting);
@@ -144,7 +144,7 @@ void cmd_statuses_chat_sets_online(void **state)
 
     expect_cons_show("Only online/offline presence updates will appear in chat windows.");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
 
     char *setting = prefs_get_string(PREF_STATUSES_CHAT);
     assert_non_null(setting);
@@ -161,7 +161,7 @@ void cmd_statuses_chat_sets_none(void **state)
 
     expect_cons_show("Presence updates will not appear in chat windows.");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
 
     char *setting = prefs_get_string(PREF_STATUSES_CHAT);
     assert_non_null(setting);
@@ -178,7 +178,7 @@ void cmd_statuses_muc_sets_all(void **state)
 
     expect_cons_show("All presence updates will appear in chat room windows.");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
 
     char *setting = prefs_get_string(PREF_STATUSES_MUC);
     assert_non_null(setting);
@@ -195,7 +195,7 @@ void cmd_statuses_muc_sets_online(void **state)
 
     expect_cons_show("Only join/leave presence updates will appear in chat room windows.");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
 
     char *setting = prefs_get_string(PREF_STATUSES_MUC);
     assert_non_null(setting);
@@ -212,7 +212,7 @@ void cmd_statuses_muc_sets_none(void **state)
 
     expect_cons_show("Presence updates will not appear in chat room windows.");
 
-    gboolean result = cmd_statuses(args, *help);
+    gboolean result = cmd_statuses(NULL, args, *help);
 
     char *setting = prefs_get_string(PREF_STATUSES_MUC);
     assert_non_null(setting);