From 3d8296940a4eec7e3dcaae05a60b18bf0d36946d Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 11 Oct 2017 14:04:49 +0100 Subject: [PATCH] tests: Fix case of a string comparison Fixup to commit 12e32e96a3b124791d09ca568e922307db83fe66. Signed-off-by: Philip Withnall --- gio/tests/gschema-compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/tests/gschema-compile.c b/gio/tests/gschema-compile.c index 99b2d1b97..65f656c52 100644 --- a/gio/tests/gschema-compile.c +++ b/gio/tests/gschema-compile.c @@ -86,7 +86,7 @@ static const SchemaTest tests[] = { { "enum", NULL, NULL }, { "enum-with-aliases", NULL, NULL }, { "enum-with-invalid-alias", NULL, "*“banger” is not in enumerated type*" }, - { "enum-with-invalid-value", NULL, "*invalid numeric value*" }, + { "enum-with-invalid-value", NULL, "*Invalid numeric value*" }, { "enum-with-repeated-alias", NULL, "* already specified*" }, { "enum-with-repeated-nick", NULL, "* already specified*" }, { "enum-with-repeated-value", NULL, "*value='1' already specified*" },