diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-11-24 21:31:13 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-11-25 01:29:45 +0800 |
commit | 2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450 (patch) | |
tree | b3b6db8a1f58fcdc4f045683a8448067f17b1328 /tests/test-helper.c | |
parent | c4eea520c7ed8adaf378e9424f199aa49efbccc7 (diff) | |
download | gsoc2013-empathy-2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450.tar gsoc2013-empathy-2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450.tar.gz gsoc2013-empathy-2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450.tar.bz2 gsoc2013-empathy-2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450.tar.lz gsoc2013-empathy-2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450.tar.xz gsoc2013-empathy-2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450.tar.zst gsoc2013-empathy-2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450.zip |
Call empathy_init() from test_init()
Diffstat (limited to 'tests/test-helper.c')
-rw-r--r-- | tests/test-helper.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test-helper.c b/tests/test-helper.c index 8b6cc2937..5595d8ee0 100644 --- a/tests/test-helper.c +++ b/tests/test-helper.c @@ -21,6 +21,8 @@ #include <glib.h> #include <glib-object.h> +#include <libempathy/empathy-utils.h> + #include "test-helper.h" void @@ -28,7 +30,7 @@ test_init (int argc, char **argv) { g_test_init (&argc, &argv, NULL); - g_type_init (); + empathy_init (); } void |