aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-10-06 15:20:50 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-10-06 15:20:50 -0500
commit7f952611ac4ef3eaed1eef9bc86be955ff66ef2a (patch)
treeeff232bf5f1fb92dd141fd38064d889c107516cc
parentcd87a58b8d7478f00b10465702a169fe92cc2dd7 (diff)
downloadayatana-indicator-display-7f952611ac4ef3eaed1eef9bc86be955ff66ef2a.tar.gz
ayatana-indicator-display-7f952611ac4ef3eaed1eef9bc86be955ff66ef2a.tar.bz2
ayatana-indicator-display-7f952611ac4ef3eaed1eef9bc86be955ff66ef2a.zip
report unexpected g_log() calls via g_print() instead of g_log() :D
-rw-r--r--tests/glib-fixture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/glib-fixture.h b/tests/glib-fixture.h
index a3e9605..a5da2f5 100644
--- a/tests/glib-fixture.h
+++ b/tests/glib-fixture.h
@@ -55,7 +55,7 @@ class GlibFixture : public ::testing::Test
if (expected_log[level] != n)
for (size_t i=0; i<n; ++i)
- g_message("%d %s", (n+1), v[i].c_str());
+ g_print("%d %s\n", (n+1), v[i].c_str());
}
expected_log.clear();