From 525de3157fba22755205faf445565317b08cd6cd Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 3 Jul 2018 19:22:47 +0100 Subject: [PATCH 36/38] fixup! containers test: Add a test for sending and receiving method calls Fix off-by-one indentation --- test/containers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/containers.c b/test/containers.c index 898efaf2..a97cbf5e 100644 --- a/test/containers.c +++ b/test/containers.c @@ -644,7 +644,7 @@ allow_tests_message_filter (GDBusConnection *connection, reply = g_dbus_message_new_method_error (message, DBUS_ERROR_UNKNOWN_METHOD, "No such method"); } - else if (g_strcmp0 (g_dbus_message_get_interface (message), + else if (g_strcmp0 (g_dbus_message_get_interface (message), DBUS_INTERFACE_PROPERTIES) == 0 && g_strcmp0 (g_dbus_message_get_member (message), "GetAll") == 0) { -- 2.18.0