diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-25 01:17:37 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-25 01:17:37 +0800 |
commit | 10f8406b09318b1a3e4fe9d08d41a60239f9f3a6 (patch) | |
tree | dcf2fcb01baa2841a81dde405071ec1ccecdc65e /addressbook/gui | |
parent | 2393a5d17e92435cb3d7726b04ff6f4a5c27c8db (diff) | |
download | gsoc2013-evolution-10f8406b09318b1a3e4fe9d08d41a60239f9f3a6.tar gsoc2013-evolution-10f8406b09318b1a3e4fe9d08d41a60239f9f3a6.tar.gz gsoc2013-evolution-10f8406b09318b1a3e4fe9d08d41a60239f9f3a6.tar.bz2 gsoc2013-evolution-10f8406b09318b1a3e4fe9d08d41a60239f9f3a6.tar.lz gsoc2013-evolution-10f8406b09318b1a3e4fe9d08d41a60239f9f3a6.tar.xz gsoc2013-evolution-10f8406b09318b1a3e4fe9d08d41a60239f9f3a6.tar.zst gsoc2013-evolution-10f8406b09318b1a3e4fe9d08d41a60239f9f3a6.zip |
Fix "make check" errors.
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/contact-editor/test-editor.c | 38 |
1 files changed, 13 insertions, 25 deletions
diff --git a/addressbook/gui/contact-editor/test-editor.c b/addressbook/gui/contact-editor/test-editor.c index 2f55e4777c..356311eb8f 100644 --- a/addressbook/gui/contact-editor/test-editor.c +++ b/addressbook/gui/contact-editor/test-editor.c @@ -28,31 +28,19 @@ #include "e-contact-editor.h" #include "ebook/e-card.h" -#define TEST_VCARD \ -"BEGIN:VCARD -" \ -"FN:Nat -" \ -"N:Friedman;Nat;D;Mr. -" \ -"BDAY:1977-08-06 -" \ -"TEL;WORK:617 679 1984 -" \ -"TEL;CELL:123 456 7890 -" \ -"EMAIL;INTERNET:nat@nat.org -" \ -"EMAIL;INTERNET:nat@ximian.com -" \ -"ADR;WORK;POSTAL:P.O. Box 101;;;Any Town;CA;91921-1234; -" \ -"ADR;HOME;POSTAL;INTL:P.O. Box 202;;;Any Town 2;MI;12344-4321;USA -" \ -"END:VCARD -" \ -" -" +#define TEST_VCARD \ +"BEGIN:VCARD" \ +"FN:Nat" \ +"N:Friedman;Nat;D;Mr." \ +"BDAY:1977-08-06" \ +"TEL;WORK:617 679 1984" \ +"TEL;CELL:123 456 7890" \ +"EMAIL;INTERNET:nat@nat.org" \ +"EMAIL;INTERNET:nat@ximian.com" \ +"ADR;WORK;POSTAL:P.O. Box 101;;;Any Town;CA;91921-1234;" \ +"ADR;HOME;POSTAL;INTL:P.O. Box 202;;;Any Town 2;MI;12344-4321;USA" \ +"END:VCARD" \ +"" static char * read_file (char *name) |