--- a/libpurple/tests/test_command.c Tue Sep 24 21:26:59 2024 -0500 +++ b/libpurple/tests/test_command.c Tue Sep 24 21:28:06 2024 -0500 @@ -36,6 +36,7 @@ static void test_purple_command_properties(void) { PurpleCommand *command = NULL; + PurpleTags *tags = NULL; GDateTime *last_used = NULL; GDateTime *last_used1 = NULL; char *icon_name = NULL; @@ -68,6 +69,7 @@ "priority", &priority, "source", &source, "summary", &summary, + "tags", &tags, "use-count", &use_count, NULL); @@ -88,6 +90,9 @@ g_assert_cmpstr(summary, ==, "summary"); g_clear_pointer(&summary, g_free); + g_assert_true(PURPLE_IS_TAGS(tags)); + g_clear_object(&tags); + g_assert_cmpuint(use_count, ==, 1337); g_assert_finalize_object(command);