diff --git a/tests/interactive/test-binding-pool.c b/tests/interactive/test-binding-pool.c index 62ecc3cf5..8440ad64e 100644 --- a/tests/interactive/test-binding-pool.c +++ b/tests/interactive/test-binding-pool.c @@ -264,24 +264,24 @@ test_binding_pool_main (int argc, char *argv[]) clutter_container_add (CLUTTER_CONTAINER (key_group), g_object_new (CLUTTER_TYPE_RECTANGLE, "color", &red_color, - "width", 50, - "height", 50, - "x", 0, - "y", 0, + "width", 50.0, + "height", 50.0, + "x", 0.0, + "y", 0.0, NULL), g_object_new (CLUTTER_TYPE_RECTANGLE, "color", &green_color, - "width", 50, - "height", 50, - "x", 75, - "y", 0, + "width", 50.0, + "height", 50.0, + "x", 75.0, + "y", 0.0, NULL), g_object_new (CLUTTER_TYPE_RECTANGLE, "color", &blue_color, - "width", 50, - "height", 50, - "x", 150, - "y", 0, + "width", 50.0, + "height", 50.0, + "x", 150.0, + "y", 0.0, NULL), NULL);