summaryrefslogtreecommitdiff
path: root/tests/libtracker-miner/tracker-file-notifier-test.c
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2014-09-24 09:57:55 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2014-09-25 12:57:28 +0200
commitb7548d92c5728452cc96a61ad0acc3e86afe5bb7 (patch)
tree19810bc34df05dfb8e1811792d67d71f0848c5cd /tests/libtracker-miner/tracker-file-notifier-test.c
parent16b7e357114738c3ac0ef925fcaab1c5f3c625ed (diff)
downloadtracker-b7548d92c5728452cc96a61ad0acc3e86afe5bb7.tar.gz
libtracker-miner: Fix API break with tracker_indexing_tree_new()
Previously it took void and it was changed to take a GFile. https://bugzilla.gnome.org/show_bug.cgi?id=737243 (cherry picked from commit 8c6485a312ffbd1c9bb3c95d5933284f56990045)
Diffstat (limited to 'tests/libtracker-miner/tracker-file-notifier-test.c')
-rw-r--r--tests/libtracker-miner/tracker-file-notifier-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtracker-miner/tracker-file-notifier-test.c b/tests/libtracker-miner/tracker-file-notifier-test.c
index 9e4809035..20825f53d 100644
--- a/tests/libtracker-miner/tracker-file-notifier-test.c
+++ b/tests/libtracker-miner/tracker-file-notifier-test.c
@@ -274,7 +274,7 @@ test_common_context_setup (TestCommonContext *fixture,
CREATE_FOLDER (fixture, "non-recursive");
CREATE_FOLDER (fixture, "non-indexed");
- fixture->indexing_tree = tracker_indexing_tree_new (NULL);
+ fixture->indexing_tree = tracker_indexing_tree_new ();
tracker_indexing_tree_set_filter_hidden (fixture->indexing_tree, TRUE);
fixture->main_loop = g_main_loop_new (NULL, FALSE);