summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/list-modems2
-rwxr-xr-xtest/list-operators2
-rwxr-xr-xtest/monitor-ofono2
-rwxr-xr-xtest/test-network-registration2
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",