[Pkg-telepathy-commits] [telepathy-glib] 17/111: stop using tp_account_manager_is_prepared()

Simon McVittie smcv at debian.org
Wed Mar 19 18:07:23 UTC 2014


This is an automated email from the git hooks/post-receive script.

smcv pushed a commit to branch debian
in repository telepathy-glib.

commit 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 file 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);
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-telepathy/telepathy-glib.git



More information about the Pkg-telepathy-commits mailing list