about summary refs log tree commit diff stats
path: root/tests/test_cmd_account.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-05-11 19:32:07 +0100
committerJames Booth <boothj5@gmail.com>2014-05-11 19:32:07 +0100
commit9dda7036a9410a6d2124d3eb6c34eefb7a39a13a (patch)
tree314eef11f733a64b767250889b68359af62d5aa0 /tests/test_cmd_account.c
parent6d955609c56a2a303eb141cbd7ba0cc2a364ef37 (diff)
downloadprofani-tty-9dda7036a9410a6d2124d3eb6c34eefb7a39a13a.tar.gz
Implemented per contact OTR policy setting
Diffstat (limited to 'tests/test_cmd_account.c')
-rw-r--r--tests/test_cmd_account.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cmd_account.c b/tests/test_cmd_account.c
index d03d757b..ea8ecc93 100644
--- a/tests/test_cmd_account.c
+++ b/tests/test_cmd_account.c
@@ -40,7 +40,7 @@ void cmd_account_shows_account_when_connected_and_no_args(void **state)
     mock_accounts_get_account();
     CommandHelp *help = malloc(sizeof(CommandHelp));
     ProfAccount *account = account_new("jabber_org", "me@jabber.org", NULL,
-        TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL);
+        TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL);
     gchar *args[] = { NULL };
 
     mock_connection_status(JABBER_CONNECTED);
@@ -119,7 +119,7 @@ void cmd_account_show_shows_account_when_exists(void **state)
     CommandHelp *help = malloc(sizeof(CommandHelp));
     gchar *args[] = { "show", "account_name", NULL };
     ProfAccount *account = account_new("jabber_org", "me@jabber.org", NULL,
-        TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL);
+        TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL);
 
     accounts_get_account_return(account);