~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to tests/libebook/client/client-test-utils.c

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
        g_print ("   Email addresses:\n");
31
31
        emails = e_contact_get (contact, E_CONTACT_EMAIL);
32
32
        for (e = emails; e; e = e->next) {
33
 
                g_print ("\t%s\n",  (gchar *)e->data);
 
33
                g_print ("\t%s\n",  (gchar *) e->data);
34
34
        }
35
35
        g_list_foreach (emails, (GFunc) g_free, NULL);
36
36
        g_list_free (emails);
338
338
        GError *error = NULL;
339
339
        gchar *vcard;
340
340
 
341
 
        case_filename = g_strdup_printf ("%s.vcf", case_name);
 
341
        case_filename = g_strdup_printf ("%s.vcf", case_name);
342
342
        filename = g_build_filename (SRCDIR, "..", "data", "vcards", case_filename, NULL);
343
343
        file = g_file_new_for_path (filename);
344
344
        if (!g_file_load_contents (file, NULL, &vcard, NULL, NULL, &error)) {
345
 
                g_warning ("failed to read test contact file '%s': %s",
 
345
                g_warning ("failed to read test contact file '%s': %s",
346
346
                                filename, error->message);
347
347
                exit (1);
348
348
        }