defaultvalue test: Skip GdkMonitor::geometry

We never return NULL for ::geometry and ::workarea. Just skip
these properties.
This commit is contained in:
Matthias Clasen 2016-05-02 12:40:51 -04:00
parent 8dd8c4a9de
commit ef7ccab188

View File

@ -151,6 +151,11 @@ test_type (gconstpointer data)
(strcmp (pspec->name, "default-display") == 0))
continue;
if (g_type_is_a (type, GDK_TYPE_MONITOR) &&
(strcmp (pspec->name, "geometry") == 0 ||
strcmp (pspec->name, "workarea") == 0))
continue;
if (g_type_is_a (type, GTK_TYPE_ABOUT_DIALOG) &&
(strcmp (pspec->name, "program-name") == 0))
continue;