diff options
author | Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com> | 2012-02-15 10:19:48 +0200 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2012-02-28 13:17:43 +0200 |
commit | e6bc3cee541f7d3c4d0f8ab4989c2be406ab578f (patch) | |
tree | c40df258f52860614693bf99017f989a0b5b923e /test | |
parent | 79ec705fa4863090d2ec524fb517903a8306c7ef (diff) | |
download | connman-e6bc3cee541f7d3c4d0f8ab4989c2be406ab578f.tar.gz connman-e6bc3cee541f7d3c4d0f8ab4989c2be406ab578f.tar.bz2 connman-e6bc3cee541f7d3c4d0f8ab4989c2be406ab578f.zip |
test: modify test-session to handle a new property
Diffstat (limited to 'test')
-rwxr-xr-x | test/test-session | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-session b/test/test-session index dcb372fc..5694ad02 100755 --- a/test/test-session +++ b/test/test-session @@ -114,7 +114,7 @@ class SessionApplication(dbus.service.Object): def type_convert(self, key, value): if key in [ "AllowedBearers" ]: return value - elif key in [ "RoamingPolicy" ]: + elif key in [ "RoamingPolicy", "ConnectionType" ]: if len(value) > 0: return value[0] elif key in [ "Priority", "AvoidHandover", |