diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-25 02:06:55 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-25 02:06:55 +0800 |
commit | 18010cbf53463aa968b99eb718916de094fbb532 (patch) | |
tree | 8fcd4d1257ba5c993bfbc6695a0ac419e8959a92 /tests | |
parent | aec12412098619da1301cfb445cc93a849d31c8c (diff) | |
download | gsoc2013-empathy-18010cbf53463aa968b99eb718916de094fbb532.tar gsoc2013-empathy-18010cbf53463aa968b99eb718916de094fbb532.tar.gz gsoc2013-empathy-18010cbf53463aa968b99eb718916de094fbb532.tar.bz2 gsoc2013-empathy-18010cbf53463aa968b99eb718916de094fbb532.tar.lz gsoc2013-empathy-18010cbf53463aa968b99eb718916de094fbb532.tar.xz gsoc2013-empathy-18010cbf53463aa968b99eb718916de094fbb532.tar.zst gsoc2013-empathy-18010cbf53463aa968b99eb718916de094fbb532.zip |
tests: port to new tp-glib account API
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check-empathy-helpers.c | 2 | ||||
-rw-r--r-- | tests/check-empathy-helpers.h | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/tests/check-empathy-helpers.c b/tests/check-empathy-helpers.c index 5fb8b4a35..d176d0abe 100644 --- a/tests/check-empathy-helpers.c +++ b/tests/check-empathy-helpers.c @@ -24,7 +24,7 @@ #include <gconf/gconf.h> #include <gconf/gconf-client.h> -#include <libempathy/empathy-account-manager.h> +#include <telepathy-glib/account-manager.h> #include "check-helpers.h" #include "check-empathy-helpers.h" diff --git a/tests/check-empathy-helpers.h b/tests/check-empathy-helpers.h index 5544b80aa..665e7e256 100644 --- a/tests/check-empathy-helpers.h +++ b/tests/check-empathy-helpers.h @@ -20,12 +20,13 @@ #define __CHECK_EMPATHY_HELPERS_H__ #include <glib.h> -#include <libempathy/empathy-account.h> + +#include <telepathy-glib/account.h> gchar * get_xml_file (const gchar *filename); gchar * get_user_xml_file (const gchar *filename); void copy_xml_file (const gchar *orig, const gchar *dest); -EmpathyAccount * get_test_account (void); -void destroy_test_account (EmpathyAccount *account); +TpAccount * get_test_account (void); +void destroy_test_account (TpAccount *account); #endif /* #ifndef __CHECK_EMPATHY_HELPERS_H__ */ |