Vary the order of unreffing dest and src

For slightly better test coverage.
This commit is contained in:
Matthias Clasen 2011-02-14 19:14:44 -05:00
parent b2919e558b
commit cfe8ec429a

View File

@ -365,8 +365,8 @@ binding_transform_default (void)
g_object_set (target, "value", 69.0, NULL);
g_assert_cmpint (source->foo, ==, 69);
g_object_unref (source);
g_object_unref (target);
g_object_unref (source);
}
static void