summaryrefslogtreecommitdiff
path: root/tests/test-helper.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2009-11-24 14:31:13 +0100
committerXavier Claessens <xclaesse@gmail.com>2009-11-24 18:29:45 +0100
commit2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450 (patch)
treeb3b6db8a1f58fcdc4f045683a8448067f17b1328 /tests/test-helper.c
parentc4eea520c7ed8adaf378e9424f199aa49efbccc7 (diff)
downloadempathy-2fc34dbe48ff603b99b6e56ce4ea94d6a3a8c450.tar.gz
Call empathy_init() from test_init()
Diffstat (limited to 'tests/test-helper.c')
-rw-r--r--tests/test-helper.c4
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