gsettings: tweak test for last commit

The last commit changed the behaviour of child objects of delayed
GSettings.  Adjust the testcase accordingly.
This commit is contained in:
Ryan Lortie 2014-01-02 01:55:07 -05:00
parent c7636ce64b
commit 8976175ba9

View File

@ -597,8 +597,9 @@ test_delay_child (void)
g_settings_set (child, "test-byte", "y", 42);
/* make sure the child was delayed too */
g_settings_get (base, "test-byte", "y", &byte);
g_assert_cmpuint (byte, ==, 42);
g_assert_cmpuint (byte, ==, 36);
g_object_unref (child);
g_object_unref (settings);