aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Prestwood <prestwoj@gmail.com>2023-12-11 11:41:20 -0800
committerDenis Kenzior <denkenz@gmail.com>2023-12-13 10:06:32 -0600
commit84d018e722a6374c5c6437713e93407270a29c4f (patch)
tree090991d8f014a07d59fdb8457a4366c645a03281
parent0dd2f0000e982f07d2a0de5d8f98b369615c05ca (diff)
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.
-rwxr-xr-xautotests/util/iwd.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py
index 3f200beb4..ddd021b0d 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='')