summaryrefslogtreecommitdiff
path: root/gio/tests/gdbus-introspection.c
diff options
context:
space:
mode:
Diffstat (limited to 'gio/tests/gdbus-introspection.c')
-rw-r--r--gio/tests/gdbus-introspection.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gio/tests/gdbus-introspection.c b/gio/tests/gdbus-introspection.c
index 88e368d72..a93c776de 100644
--- a/gio/tests/gdbus-introspection.c
+++ b/gio/tests/gdbus-introspection.c
@@ -53,13 +53,13 @@ introspection_on_proxy_appeared (GDBusConnection *connection,
/*
* Invoke Introspect(), then parse the output.
*/
- result = g_dbus_proxy_invoke_method_sync (proxy,
- "org.freedesktop.DBus.Introspectable.Introspect",
- NULL,
- G_DBUS_INVOKE_METHOD_FLAGS_NONE,
- -1,
- NULL,
- &error);
+ result = g_dbus_proxy_call_sync (proxy,
+ "org.freedesktop.DBus.Introspectable.Introspect",
+ NULL,
+ G_DBUS_CALL_FLAGS_NONE,
+ -1,
+ NULL,
+ &error);
g_assert_no_error (error);
g_assert (result != NULL);
g_variant_get (result, "(s)", &xml_data);