X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=tests%2Fcheck_account-mgr.c;h=6c006672277a857142aa09dd6b70b1bb0c59ca78;hp=697d411594b8148a0c96417d379c03e966061cb9;hb=250e23c3f8c9b93a86641c4c8acecc1adb817e02;hpb=89e160bc529653c83e480de512561219d4134c1d diff --git a/tests/check_account-mgr.c b/tests/check_account-mgr.c index 697d411..6c00667 100644 --- a/tests/check_account-mgr.c +++ b/tests/check_account-mgr.c @@ -104,7 +104,7 @@ START_TEST (test_add_exists_remove_account_regular) gchar *hostname = NULL; gchar *username = NULL; gchar *password = NULL; - ModestProtocol proto; + ModestTransportStoreProtocol proto; gboolean result; name = g_strdup (TEST_MODEST_ACCOUNT_NAME); @@ -114,11 +114,11 @@ START_TEST (test_add_exists_remove_account_regular) result = modest_account_mgr_add_account (account_mgr, name, store_account, - transport_account); + transport_account, TRUE); fail_unless (result, "modest_account_mgr_add_account failed:\n" \ "name: %s\nstore: %s\ntransport: %s\n", - name, store_account, transport_account); + name, store_account, transport_account, TRUE); g_free (store_account); g_free (transport_account); @@ -227,7 +227,7 @@ START_TEST (test_add_exists_remove_account_invalid) result = modest_account_mgr_add_account (NULL, TEST_MODEST_ACCOUNT_NAME, "store_account", - "transport_account"); + "transport_account", TRUE); fail_unless (!result, "modest_account_mgr_add_account does not return FALSE when" \ "passing a NULL ModestAccountMgr"); @@ -236,7 +236,7 @@ START_TEST (test_add_exists_remove_account_invalid) result = modest_account_mgr_add_account (account_mgr, NULL, "store_account", - "transport_account"); + "transport_account", TRUE); fail_unless (!result, "modest_account_mgr_add_account does not return FALSE when" \ "passing a NULL account name"); @@ -245,7 +245,7 @@ START_TEST (test_add_exists_remove_account_invalid) result = modest_account_mgr_add_account (account_mgr, "ïnválid//accountñ//nÄméç", "store_account", - "transport_account"); + "transport_account", TRUE); fail_unless (!result, "modest_account_mgr_add_account does not return FALSE when" \ "passing an invalid account name");