diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-helper.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test-helper.c b/tests/test-helper.c index 5595d8ee0..d51d22a52 100644 --- a/tests/test-helper.c +++ b/tests/test-helper.c @@ -20,8 +20,9 @@ #include <stdlib.h> #include <glib.h> #include <glib-object.h> +#include <gtk/gtk.h> -#include <libempathy/empathy-utils.h> +#include <libempathy-gtk/empathy-ui-utils.h> #include "test-helper.h" @@ -30,7 +31,8 @@ test_init (int argc, char **argv) { g_test_init (&argc, &argv, NULL); - empathy_init (); + gtk_init (&argc, &argv); + empathy_gtk_init (); } void |