aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>1999-11-17 23:35:43 +0800
committerEttore Perazzoli <ettore@src.gnome.org>1999-11-17 23:35:43 +0800
commit9663037f6c0daaf03d74c88afb002a6bb33f222b (patch)
treea6edccc1e5963511d0734e3171b97d853bf14b5c /tests
parentca7044930f42a698fd88f914c2512a20e2eeaae9 (diff)
downloadgsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.gz
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.bz2
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.lz
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.xz
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.zst
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.zip
More work:
- Fixed some Camel API naming issues. - Moved the message composer stuff to the `composer' directory. svn path=/trunk/; revision=1395
Diffstat (limited to 'tests')
-rw-r--r--tests/test1.c18
-rw-r--r--tests/ui-tests/Makefile.am3
2 files changed, 12 insertions, 9 deletions
diff --git a/tests/test1.c b/tests/test1.c
index 1adaf0b163..5caac29c74 100644
--- a/tests/test1.c
+++ b/tests/test1.c
@@ -57,12 +57,18 @@ main (int argc, char**argv)
camel_mime_message_set_reply_to (message, g_strdup ("toto@toto.com"));
camel_mime_message_set_from (message, g_strdup ("Bertrand.Guiheneuf@aful.org"));
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_TO, g_strdup ("franck.dechamps@alseve.fr"));
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_TO, g_strdup ("mc@alseve.fr"));
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_TO, g_strdup ("richard.lengagne@aful.org"));
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_CC, g_strdup ("Francois.fleuret@aful.org"));
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_CC, g_strdup ("maury@justmagic.com"));
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_BCC, g_strdup ("Bertrand.Guiheneuf@aful.org"));
+ camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_TO,
+ g_strdup ("franck.dechamps@alseve.fr"));
+ camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_TO,
+ g_strdup ("mc@alseve.fr"));
+ camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_TO,
+ g_strdup ("richard.lengagne@aful.org"));
+ camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_CC,
+ g_strdup ("Francois.fleuret@aful.org"));
+ camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_CC,
+ g_strdup ("maury@justmagic.com"));
+ camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_BCC,
+ g_strdup ("Bertrand.Guiheneuf@aful.org"));
multipart = camel_multipart_new ();
body_part = camel_mime_body_part_new ();
diff --git a/tests/ui-tests/Makefile.am b/tests/ui-tests/Makefile.am
index 24d62047db..7c26399bbb 100644
--- a/tests/ui-tests/Makefile.am
+++ b/tests/ui-tests/Makefile.am
@@ -14,6 +14,3 @@ LDADD = \
$(INTLLIBS) \
$(EXTRA_GNOME_LIBS) \
$(PTHREAD_LIB)
-
-noinst_PROGRAMS = \
- msg-composer-test \ No newline at end of file