From 84d018e722a6374c5c6437713e93407270a29c4f Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Mon, 11 Dec 2023 11:41:20 -0800 Subject: [PATCH] auto-t: fix SignalAgent Release arguments The path for IWD to call this doesn't ever happen in autotests but during debugging of the DPP agent it was noticed that the DBus signature was incorrect and would always result in an error when calling from IWD. --- autotests/util/iwd.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py index 3f200beb..ddd021b0 100755 --- a/autotests/util/iwd.py +++ b/autotests/util/iwd.py @@ -201,9 +201,9 @@ class SignalAgent(dbus.service.Object): return self._path @dbus.service.method(IWD_SIGNAL_AGENT_INTERFACE, - in_signature='', out_signature='') - def Release(self): - print("SignalAgent released") + in_signature='o', out_signature='') + def Release(self, path): + print("SignalAgent released %s" % path) @dbus.service.method(IWD_SIGNAL_AGENT_INTERFACE, in_signature='oy', out_signature='')