diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/interactive/test-empathy-account-chooser.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/interactive/test-empathy-account-chooser.c b/tests/interactive/test-empathy-account-chooser.c index d2ce7ccbc..7622a6248 100644 --- a/tests/interactive/test-empathy-account-chooser.c +++ b/tests/interactive/test-empathy-account-chooser.c @@ -5,12 +5,14 @@ #include <libempathy-gtk/empathy-ui-utils.h> #include <libempathy-gtk/empathy-account-chooser.h> -static gboolean +static void filter_func (TpAccount *account, + EmpathyAccountChooserFilterResultCallback callback, + gpointer callback_data, gpointer user_data) { g_assert (TP_IS_ACCOUNT (account)); - return TRUE; + callback (TRUE, callback_data); } int |