summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-27 14:56:38 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-27 15:33:49 +0200
commit2e3e802c3bd98dc73c90dcda389d49e3e37de914 (patch)
tree7f0d515dfe41f530d2e2efe289943c9a85ddf82c
parent5620e4b93db55a71d97805964371c0f1fcda5d3b (diff)
downloadtelepathy-logger-2e3e802c3bd98dc73c90dcda389d49e3e37de914.tar.gz
stop using tp_account_is_prepared()
-rw-r--r--tests/dbus/test-log-manager.c3
-rw-r--r--tests/dbus/test-tpl-log-store-pidgin.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/tests/dbus/test-log-manager.c b/tests/dbus/test-log-manager.c
index 5441b87..e82a91c 100644
--- a/tests/dbus/test-log-manager.c
+++ b/tests/dbus/test-log-manager.c
@@ -213,8 +213,7 @@ setup_service (TestCaseFixture* fixture,
account_prepare_cb, fixture);
g_main_loop_run (fixture->main_loop);
- g_assert (tp_account_is_prepared (fixture->account,
- TP_ACCOUNT_FEATURE_CORE));
+ g_assert (tp_proxy_is_prepared (fixture->account, TP_ACCOUNT_FEATURE_CORE));
tp_g_value_slice_free (boxed_params);
}
diff --git a/tests/dbus/test-tpl-log-store-pidgin.c b/tests/dbus/test-tpl-log-store-pidgin.c
index f7d307d..411860d 100644
--- a/tests/dbus/test-tpl-log-store-pidgin.c
+++ b/tests/dbus/test-tpl-log-store-pidgin.c
@@ -159,8 +159,7 @@ setup_service (PidginTestCaseFixture* fixture,
account_prepare_cb, fixture);
g_main_loop_run (fixture->main_loop);
- g_assert (tp_account_is_prepared (fixture->account,
- TP_ACCOUNT_FEATURE_CORE));
+ g_assert (tp_proxy_is_prepared (fixture->account, TP_ACCOUNT_FEATURE_CORE));
tp_g_value_slice_free (boxed_params);
}