diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-07-19 19:39:30 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-07-19 19:39:30 +0200 |
commit | b83b34a4591c388a4781449fa1a56615f048a9a6 (patch) | |
tree | 79b2badb6be49b5380244bee652da146fbc3f00c /test | |
parent | 98ac1b13a75a5dddb17d6d6f26e9365146083d7b (diff) | |
download | connman-b83b34a4591c388a4781449fa1a56615f048a9a6.tar.gz connman-b83b34a4591c388a4781449fa1a56615f048a9a6.tar.bz2 connman-b83b34a4591c388a4781449fa1a56615f048a9a6.zip |
Rename Technologies property to AvailableTechnologies
Diffstat (limited to 'test')
-rwxr-xr-x | test/test-manager | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/test-manager b/test/test-manager index c27ebedf..33835237 100755 --- a/test/test-manager +++ b/test/test-manager @@ -58,16 +58,11 @@ def print_properties(key, value): val = str(path) list = list + val[val.rfind("/") + 1:] + " " print " Services = [ %s]" % (list) - if "Technologies" in properties.keys(): - list = "" - for val in properties["Technologies"]: - list = list + val + " " - print " Technologies = [ %s]" % (list) for key in properties.keys(): if key in ["Profiles", "Devices", "Connections", "Services"]: print_properties(key, properties[key]) - elif key in ["Technologies", "EnabledTechnologies"]: + elif key in ["AvailableTechnologies", "EnabledTechnologies"]: print "%s" % (key) list = "" for val in properties[key]: |