summaryrefslogtreecommitdiff
path: root/tests/functional-tests
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2019-12-31 15:47:16 +0100
committerCarlos Garnacho <carlosg@gnome.org>2020-02-17 18:57:46 +0100
commit02cf62f759332bcd19676779bd0a4abcfc96e90d (patch)
tree0a2950fb8552389c9ac5ffd8bd63c5569356a291 /tests/functional-tests
parent3d5e60310f92bffc65ce82ff45b4de4140049cbc (diff)
downloadtracker-02cf62f759332bcd19676779bd0a4abcfc96e90d.tar.gz
libtracker-sparql: Allow specifying object path on DBus SPARQL connections
This may be useful for endpoints eg. implemented via application plugins, as a single dbus path can't be relied otherwise. We still look up for the /org/freedesktop/Tracker1/Endpoint object path by default.
Diffstat (limited to 'tests/functional-tests')
-rw-r--r--tests/functional-tests/ipc/test-bus-query-cancellation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional-tests/ipc/test-bus-query-cancellation.c b/tests/functional-tests/ipc/test-bus-query-cancellation.c
index 44388b88d..795887961 100644
--- a/tests/functional-tests/ipc/test-bus-query-cancellation.c
+++ b/tests/functional-tests/ipc/test-bus-query-cancellation.c
@@ -93,7 +93,7 @@ create_dbus_connection (GError **error)
g_usleep (100);
dbus = tracker_sparql_connection_bus_new (g_dbus_connection_get_unique_name (dbus_conn),
- dbus_conn, error);
+ NULL, dbus_conn, error);
return dbus;
}