summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-27 15:11:23 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-27 15:11:23 +0200
commit0bce763db1a3237e6ff216daca3244585f69811e (patch)
tree9beaf9c282072f6ee2b8620eba0c5ef6bba150be /tests
parent419de7023bc42c1c5fa7cab3a9bea7e62869d671 (diff)
downloadtelepathy-glib-0bce763db1a3237e6ff216daca3244585f69811e.tar.gz
stop using tp_account_manager_is_prepared()
Diffstat (limited to 'tests')
-rw-r--r--tests/dbus/account-manager.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/dbus/account-manager.c b/tests/dbus/account-manager.c
index 060dd184f..65b210d2d 100644
--- a/tests/dbus/account-manager.c
+++ b/tests/dbus/account-manager.c
@@ -276,7 +276,7 @@ finish_prepare_action (GObject *source_object,
g_assert (test->am == am);
test->prepared = tp_account_manager_prepare_finish (am, res, &test->error);
- is_prepared_reply = tp_account_manager_is_prepared (test->am,
+ is_prepared_reply = tp_proxy_is_prepared (test->am,
TP_ACCOUNT_MANAGER_FEATURE_CORE);
g_assert_cmpint (is_prepared_reply, ==, test->prepared);
script_continue (test);
@@ -338,7 +338,7 @@ assert_core_not_ready_action (gpointer script_data,
{
Test *test = (Test *) script_data;
- g_assert (!tp_account_manager_is_prepared (test->am,
+ g_assert (!tp_proxy_is_prepared (test->am,
TP_ACCOUNT_MANAGER_FEATURE_CORE));
script_continue (script_data);
@@ -350,7 +350,7 @@ assert_feature_not_ready_action (gpointer script_data,
{
Test *test = (Test *) script_data;
- g_assert (!tp_account_manager_is_prepared (test->am,
+ g_assert (!tp_proxy_is_prepared (test->am,
g_quark_from_string ((gchar *) user_data)));
g_free (user_data);
@@ -410,7 +410,7 @@ ensure_action (gpointer script_data,
Test *test = (Test *) script_data;
g_assert (test != NULL);
g_assert (test->am != NULL);
- g_assert (tp_account_manager_is_prepared (test->am, TP_ACCOUNT_MANAGER_FEATURE_CORE));
+ g_assert (tp_proxy_is_prepared (test->am, TP_ACCOUNT_MANAGER_FEATURE_CORE));
test->account = tp_account_manager_ensure_account (test->am,
path);