diff -r acd3cd4aaceb -r 2efc27d87e1c glib/tsrc/BC/tests/gobject/paramspec-test.c --- a/glib/tsrc/BC/tests/gobject/paramspec-test.c Tue Aug 31 16:54:36 2010 +0300 +++ b/glib/tsrc/BC/tests/gobject/paramspec-test.c Wed Sep 01 12:36:54 2010 +0100 @@ -130,13 +130,13 @@ G_TYPE_PARAM, G_PARAM_READWRITE); g_value_init (&value, G_TYPE_GTYPE); - g_value_set_gtype (&value, G_TYPE_PARAM); + g_value_set_gtype (&value, G_TYPE_NONE); g_assert (g_param_value_defaults (pspec, &value)); g_value_set_gtype (&value, G_TYPE_INT); modified = g_param_value_validate (pspec, &value); - g_assert (modified && g_value_get_gtype (&value) == G_TYPE_PARAM); + g_assert (modified && g_value_get_gtype (&value) == G_TYPE_NONE); g_value_set_gtype (&value, G_TYPE_PARAM_INT); modified = g_param_value_validate (pspec, &value);