X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gobject%2Ftests%2Fbinding.c;h=310a991a56747497882641a4d679bd8bb3824540;hb=HEAD;hp=afa7eb9ab9096197d5c72cb93311b057fb50a8e6;hpb=cfc2fe7a2ac92a436518846b1210afeeb104fb63;p=profile%2Fivi%2Fglib2.git diff --git a/gobject/tests/binding.c b/gobject/tests/binding.c index afa7eb9..310a991 100644 --- a/gobject/tests/binding.c +++ b/gobject/tests/binding.c @@ -563,6 +563,9 @@ binding_same_object (void) g_object_set (source, "foo", 10, NULL); g_assert_cmpint (source->foo, ==, 10); g_assert_cmpint (source->bar, ==, 10); + g_object_set (source, "bar", 30, NULL); + g_assert_cmpint (source->foo, ==, 30); + g_assert_cmpint (source->bar, ==, 30); g_object_unref (source); }