diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/list-modems | 2 | ||||
-rwxr-xr-x | test/list-operators | 2 | ||||
-rwxr-xr-x | test/monitor-ofono | 2 | ||||
-rwxr-xr-x | test/test-network-registration | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/list-modems b/test/list-modems index 173d0400..7425c8d9 100755 --- a/test/list-modems +++ b/test/list-modems @@ -38,7 +38,7 @@ for path in properties["Modems"]: continue for key in properties.keys(): - if key in ["AvailableOperators", "Calls", + if key in ["Operators", "Calls", "MultipartyCalls", "EmergencyNumbers", "SubscriberNumbers", diff --git a/test/list-operators b/test/list-operators index 545270b4..52ef95a0 100755 --- a/test/list-operators +++ b/test/list-operators @@ -25,7 +25,7 @@ for path in properties["Modems"]: properties = netreg.GetProperties() - for path in properties["AvailableOperators"]: + for path in properties["Operators"]: operator = dbus.Interface(bus.get_object('org.ofono', path), 'org.ofono.NetworkOperator') diff --git a/test/monitor-ofono b/test/monitor-ofono index 86b81fc3..071d4f76 100755 --- a/test/monitor-ofono +++ b/test/monitor-ofono @@ -10,7 +10,7 @@ def property_changed(name, value, path, interface): if name in ["Modems", "Interfaces", "Technologies", "SubscriberNumbers", - "AvailableOperators", + "Operators", "PreferredLanguages"]: val = "" for i in value: diff --git a/test/test-network-registration b/test/test-network-registration index 7777499e..9a8f3c91 100755 --- a/test/test-network-registration +++ b/test/test-network-registration @@ -54,7 +54,7 @@ if __name__ == "__main__": if props.has_key('Technology'): print "Technology: '%s'" % (props['Technology']) - for path in props['AvailableOperators']: + for path in props['Operators']: op = dbus.Interface(bus.get_object('org.ofono', path), 'org.ofono.NetworkOperator') op.connect_to_signal("PropertyChanged", |