summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2012-12-20 16:42:48 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2012-12-20 16:42:48 +0100
commit5d61b03cafa66876adb9dfec0bf5603980efdf0c (patch)
tree3f68911f09989c5dee47c6ff4b74feccce4ac411 /tests
parent80ba8e134e41951856e3eb443babd9b513b3eab8 (diff)
First working version with automatic remote split
... but proper server cleanup is still missing. And some necessary refactorings.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-graph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-graph.c b/tests/test-graph.c
index 767717d..5ba4008 100644
--- a/tests/test-graph.c
+++ b/tests/test-graph.c
@@ -160,7 +160,7 @@ test_split_and_join (Fixture *fixture, gconstpointer data)
}
static gboolean
-always_true (UfoNode *node)
+always_true (UfoNode *node, gpointer user_data)
{
return TRUE;
}
@@ -170,7 +170,7 @@ test_get_nodes_filtered (Fixture *fixture, gconstpointer data)
{
GList *nodes;
- nodes = ufo_graph_get_nodes_filtered (fixture->sequence, always_true);
+ nodes = ufo_graph_get_nodes_filtered (fixture->sequence, always_true, NULL);
g_assert (g_list_length (nodes) == 3);
g_assert (g_list_find (nodes, fixture->root) != NULL);
g_assert (g_list_find (nodes, fixture->target1) != NULL);