libpurple/tests/test_message.c

changeset 43140
951c4110ad50
parent 43100
e6df74d36862
child 43146
37dc8a82f676
--- a/libpurple/tests/test_message.c	Tue Jan 14 00:11:18 2025 -0600
+++ b/libpurple/tests/test_message.c	Wed Jan 15 19:04:02 2025 -0600
@@ -51,7 +51,6 @@
 	GError *error = NULL;
 	GError *error1 = NULL;
 	char *id = NULL;
-	char *author_name_color = NULL;
 	char *contents = NULL;
 	gboolean action = FALSE;
 	gboolean delivered = FALSE;
@@ -80,7 +79,6 @@
 		PURPLE_TYPE_MESSAGE,
 		"action", TRUE,
 		"author", author,
-		"author-name-color", "purple",
 		"contents", "Now that is a big door",
 		"delivered", TRUE,
 		"edited", TRUE,
@@ -96,7 +94,6 @@
 		message,
 		"action", &action,
 		"author", &author1,
-		"author-name-color", &author_name_color,
 		"contents", &contents,
 		"delivered", &delivered,
 		"delivered-at", &delivered_at1,
@@ -115,9 +112,6 @@
 	g_assert_true(author1 == author);
 	g_clear_object(&author1);
 
-	g_assert_cmpstr(author_name_color, ==, "purple");
-	g_clear_pointer(&author_name_color, g_free);
-
 	g_assert_cmpstr(contents, ==, "Now that is a big door");
 	g_clear_pointer(&contents, g_free);
 

mercurial