diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2012-11-13 14:08:13 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2012-11-13 14:08:13 -0600 |
commit | 9f1a3f8f6338dc0ed7db17df8d03937410e02cf4 (patch) | |
tree | c7bc841dec6b209dce8db8c97b46ba6487e983c8 | |
parent | 1e5206eed3848d8014a225b5d8252c5c7aeb137e (diff) | |
download | ayatana-indicator-session-9f1a3f8f6338dc0ed7db17df8d03937410e02cf4.tar.gz ayatana-indicator-session-9f1a3f8f6338dc0ed7db17df8d03937410e02cf4.tar.bz2 ayatana-indicator-session-9f1a3f8f6338dc0ed7db17df8d03937410e02cf4.zip |
revert the g_message() tracers added in r372
-rw-r--r-- | tests/test-service.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test-service.cc b/tests/test-service.cc index 21967cb..4d540d6 100644 --- a/tests/test-service.cc +++ b/tests/test-service.cc @@ -107,7 +107,6 @@ TEST_F (ClientTest, TestCanStartService) // call GetUserRealName(), which as a side effect should activate // indicator-session-service via the .service file in the tests/ directory error = NULL; -g_message ("calling g_dbus_connection_call_sync"); result = g_dbus_connection_call_sync (session_bus, INDICATOR_SESSION_DBUS_NAME, INDICATOR_SESSION_SERVICE_DBUS_OBJECT, @@ -119,7 +118,6 @@ g_message ("calling g_dbus_connection_call_sync"); -1, NULL, &error); -g_message ("done calling g_dbus_connection_call_sync"); EXPECT_TRUE (error == NULL); ASSERT_TRUE (result != NULL); @@ -136,7 +134,6 @@ g_message ("done calling g_dbus_connection_call_sync"); g_clear_pointer (&result, g_variant_unref); // call IndicatorService's Shutdown() method for a clean exit -g_message ("calling g_dbus_connection_call_sync"); result = g_dbus_connection_call_sync (session_bus, INDICATOR_SESSION_DBUS_NAME, "/org/ayatana/indicator/service", @@ -145,6 +142,5 @@ g_message ("calling g_dbus_connection_call_sync"); NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, NULL); -g_message ("calling g_clear_pointer"); g_clear_pointer (&result, g_variant_unref); } |