summaryrefslogtreecommitdiff
path: root/gtk/tests
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/tests')
-rw-r--r--gtk/tests/filtermodel.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/gtk/tests/filtermodel.c b/gtk/tests/filtermodel.c
index 850f8d3b61..3c3b5b46dc 100644
--- a/gtk/tests/filtermodel.c
+++ b/gtk/tests/filtermodel.c
@@ -745,9 +745,12 @@ unfiltered_show_single_child (FilterTest *fixture,
check_filter_model (fixture);
check_level_length (fixture->filter, NULL, 0);
+ /* From here we are filtered, "2" in the real model is "0" in the filter
+ * model.
+ */
set_path_visibility (fixture, "2", TRUE);
check_level_length (fixture->filter, NULL, 1);
- check_level_length (fixture->filter, "2", 1);
+ check_level_length (fixture->filter, "0", 1);
}
static void
@@ -767,11 +770,14 @@ unfiltered_show_single_multi_level (FilterTest *fixture,
check_filter_model (fixture);
check_level_length (fixture->filter, NULL, 0);
+ /* From here we are filtered, "2" in the real model is "0" in the filter
+ * model.
+ */
set_path_visibility (fixture, "2", TRUE);
check_filter_model (fixture);
check_level_length (fixture->filter, NULL, 1);
- check_level_length (fixture->filter, "2", 1);
- check_level_length (fixture->filter, "2:2", 1);
+ check_level_length (fixture->filter, "0", 1);
+ check_level_length (fixture->filter, "0:0", 1);
}