[next] telepathy-glib: stop using tp_account_manager_is_prepared()
Simon McVittie
smcv at kemper.freedesktop.org
Fri Sep 27 06:23:45 PDT 2013
Module: telepathy-glib
Branch: next
Commit: 0bce763db1a3237e6ff216daca3244585f69811e
URL: http://cgit.freedesktop.org/telepathy/telepathy-glib/commit/?id=0bce763db1a3237e6ff216daca3244585f69811e
Author: Guillaume Desmottes <guillaume.desmottes at collabora.co.uk>
Date: Fri Sep 27 15:11:23 2013 +0200
stop using tp_account_manager_is_prepared()
---
tests/dbus/account-manager.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/dbus/account-manager.c b/tests/dbus/account-manager.c
index 060dd18..65b210d 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);
More information about the telepathy-commits
mailing list