summaryrefslogtreecommitdiff
path: root/test/test-connman
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-connman')
-rwxr-xr-xtest/test-connman11
1 files changed, 2 insertions, 9 deletions
diff --git a/test/test-connman b/test/test-connman
index e2ff23a3..473af628 100755
--- a/test/test-connman
+++ b/test/test-connman
@@ -25,12 +25,7 @@ if len(sys.argv) < 2:
sys.exit(1)
def print_services(services):
- for path in services:
- service = dbus.Interface(bus.get_object("net.connman", path),
- "net.connman.Service")
-
- properties = service.GetProperties()
-
+ for path, properties in services:
identifier = path[path.rfind("/") + 1:]
if properties["Favorite"] == dbus.Boolean(1):
@@ -51,9 +46,7 @@ if sys.argv[1] == "state":
print "System is %s" % (properties["State"])
elif sys.argv[1] in ["services", "list", "show"]:
- properties = manager.GetProperties()
-
- print_services(properties["Services"])
+ print_services(manager.GetServices())
elif sys.argv[1] in ["autoconnect", "autoconn"]:
if (len(sys.argv) < 3):