diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-service.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-service.cc b/tests/test-service.cc index 19ec619..5ec86d2 100644 --- a/tests/test-service.cc +++ b/tests/test-service.cc @@ -342,7 +342,7 @@ class ServiceTest: public GTestDBusFixture if (expected_icon != NULL) { GVariant * v = g_variant_lookup_value (state, "icon", NULL); - GIcon * expected = g_themed_icon_new (expected_icon); + GIcon * expected = g_themed_icon_new_with_default_fallbacks (expected_icon); GIcon * actual = g_icon_deserialize (v); ASSERT_TRUE (g_icon_equal (expected, actual)); g_object_unref (actual); |