diff --git a/test/monitor-iwd b/test/monitor-iwd index c074954e..e801ef54 100755 --- a/test/monitor-iwd +++ b/test/monitor-iwd @@ -59,7 +59,7 @@ def properties_changed(interface, changed, invalidated, path): relevant_ifaces = [ "net.connman.iwd.Device", "net.connman.iwd.Adapter", - "net.connman.iwd.WiFiSimpleConfiguration", + "net.connman.iwd.SimpleConfiguration", "net.connman.iwd.AccessPoint", "net.connman.iwd.AdHoc", "net.connman.iwd.Network", diff --git a/test/wps-cancel b/test/wps-cancel index df47a017..e1b730a7 100755 --- a/test/wps-cancel +++ b/test/wps-cancel @@ -9,5 +9,5 @@ if (len(sys.argv) != 2): bus = dbus.SystemBus() wsc = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]), - "net.connman.iwd.WiFiSimpleConfiguration") + "net.connman.iwd.SimpleConfiguration") wsc.Cancel() diff --git a/test/wps-pin b/test/wps-pin index 74cd8c40..ea79df4e 100755 --- a/test/wps-pin +++ b/test/wps-pin @@ -9,7 +9,7 @@ if (len(sys.argv) != 2 and len(sys.argv) != 3): bus = dbus.SystemBus() wsc = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]), - "net.connman.iwd.WiFiSimpleConfiguration") + "net.connman.iwd.SimpleConfiguration") if (len(sys.argv) == 3): pin = sys.argv[2] diff --git a/test/wps-push-button b/test/wps-push-button index 04aad1e4..50a02ad9 100755 --- a/test/wps-push-button +++ b/test/wps-push-button @@ -9,5 +9,5 @@ if (len(sys.argv) != 2): bus = dbus.SystemBus() wsc = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]), - "net.connman.iwd.WiFiSimpleConfiguration") + "net.connman.iwd.SimpleConfiguration") wsc.PushButton()