aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test10.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/test10.c b/tests/test10.c
index 3db63bfd3e..deeed0b0ac 100644
--- a/tests/test10.c
+++ b/tests/test10.c
@@ -38,10 +38,14 @@ main (int argc, char**argv)
store = camel_session_get_store (session, store_url);
- folder = camel_store_get_folder (store, "Inbox");
-
+ folder = camel_store_get_folder (store, "Inbox", ex);
+ if (camel_exception_get_id (ex)) {
+ printf ("Exception caughy in camel_store_get_folder"
+ "Full description : %s\n", camel_exception_get_description (ex));
+ }
camel_folder_open (folder, FOLDER_OPEN_RW, ex);
+ camel_folder_close (folder, FALSE, ex);
return 1;
}