From 56210220a2c86b099ca7757b67a3ef7fb2366d3d Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 20 Aug 2012 17:26:45 -0400 Subject: [PATCH] tests/protocol: update the messages to reflect G_LOG_DOMAIN being set now --- glib/tests/protocol.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/glib/tests/protocol.c b/glib/tests/protocol.c index 6aff1c13c..a07b9f0ba 100644 --- a/glib/tests/protocol.c +++ b/glib/tests/protocol.c @@ -200,8 +200,8 @@ test_message (void) { gchar const* known_messages[] = { "this is a regular g_test_message() from the test suite", - "MESSAGE: this is a regular g_message() from the test suite", - "DEBUG: this is a regular g_debug() from the test suite" + "GLib-MESSAGE: this is a regular g_message() from the test suite", + "GLib-DEBUG: this is a regular g_debug() from the test suite" }; g_assert_cmpint (messages, <, G_N_ELEMENTS (known_messages)); g_assert_cmpstr (msg->strings[0], ==, known_messages[messages]); @@ -309,9 +309,9 @@ test_error (void) case G_TEST_LOG_ERROR: { gchar const* known_messages[] = { - "FATAL-WARNING: this is a regular g_warning() from the test suite", - "FATAL-CRITICAL: this is a regular g_critical() from the test suite", - "FATAL-ERROR: this is a regular g_error() from the test suite" + "GLib-FATAL-WARNING: this is a regular g_warning() from the test suite", + "GLib-FATAL-CRITICAL: this is a regular g_critical() from the test suite", + "GLib-FATAL-ERROR: this is a regular g_error() from the test suite" }; g_assert_cmpint (messages, <, G_N_ELEMENTS (known_messages)); g_assert_cmpstr (msg->strings[0], ==, known_messages[messages]);