summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2018-11-28 17:15:30 +0100
committerMilan Crha <mcrha@redhat.com>2018-11-28 17:15:30 +0100
commit6e0339709ea9a9f7380565504470c9613fcd0174 (patch)
tree3f9a42629244e349c2649e0e382287d443ce19c2
parent52deccba502037b66d4ef6ed91d814fd6b1654ac (diff)
downloadevolution-data-server-6e0339709ea9a9f7380565504470c9613fcd0174.tar.gz
[test-cal-client-get-free-busy] Correct error messages
-rw-r--r--tests/libecal/client/test-cal-client-get-free-busy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/libecal/client/test-cal-client-get-free-busy.c b/tests/libecal/client/test-cal-client-get-free-busy.c
index c3680970f..c611f1c47 100644
--- a/tests/libecal/client/test-cal-client-get-free-busy.c
+++ b/tests/libecal/client/test-cal-client-get-free-busy.c
@@ -43,26 +43,26 @@ setup_fixture (ETestServerFixture *fixture,
/* Create the mail identity */
scratch = e_source_new_with_uid (MAIL_IDENTITY_UID, NULL, &error);
if (!scratch)
- g_error ("Failed to create scratch source for an email user: %s", error->message);
+ g_error ("Failed to create scratch source for a mail identity: %s", error->message);
mail_identity = e_source_get_extension (scratch, E_SOURCE_EXTENSION_MAIL_IDENTITY);
e_source_mail_identity_set_address (mail_identity, USER_EMAIL);
if (!e_source_registry_commit_source_sync (fixture->registry, scratch, NULL, &error))
- g_error ("Unable to add new addressbook source to the registry: %s", error->message);
+ g_error ("Unable to add new scratch mail identity source to the registry: %s", error->message);
g_object_unref (scratch);
/* Create the mail account */
scratch = e_source_new_with_uid (MAIL_ACCOUNT_UID, NULL, &error);
if (!scratch)
- g_error ("Failed to create scratch source for an email user: %s", error->message);
+ g_error ("Failed to create scratch source for a mail account: %s", error->message);
mail_account = e_source_get_extension (scratch, E_SOURCE_EXTENSION_MAIL_ACCOUNT);
e_source_mail_account_set_identity_uid (mail_account, MAIL_IDENTITY_UID);
if (!e_source_registry_commit_source_sync (fixture->registry, scratch, NULL, &error))
- g_error ("Unable to add new addressbook source to the registry: %s", error->message);
+ g_error ("Unable to add new scratch mail account source to the registry: %s", error->message);
g_object_unref (scratch);
}