mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-16 07:04:29 +00:00
testsuite: omit some selection properties
The selected property of GtkSingleSelection is not freely settable, so omit it from notification tests.
This commit is contained in:
parent
dcdec4bf96
commit
ccb0a0fdfe
@ -611,6 +611,12 @@ test_type (gconstpointer data)
|
||||
g_str_equal (pspec->name, "expanded"))
|
||||
continue;
|
||||
|
||||
/* can't select items without an underlying, populated model */
|
||||
if (g_type_is_a (type, GTK_TYPE_SINGLE_SELECTION) &&
|
||||
(g_str_equal (pspec->name, "selected") ||
|
||||
g_str_equal (pspec->name, "selected-item")))
|
||||
continue;
|
||||
|
||||
if (g_test_verbose ())
|
||||
g_print ("Property %s.%s\n", g_type_name (pspec->owner_type), pspec->name);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user