diff options
author | Leena Gunda <leena.gunda@wipro.com> | 2010-11-10 12:10:00 +0100 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2010-11-10 12:10:00 +0100 |
commit | 5cb8bb1ba90826b09f1e443336f15f379cd6955b (patch) | |
tree | 3e8d2a96c9196030d65106c91ec9543ffe91280b /test | |
parent | b509adcc1a0a86366783e6e83ae7138364084213 (diff) | |
download | connman-5cb8bb1ba90826b09f1e443336f15f379cd6955b.tar.gz connman-5cb8bb1ba90826b09f1e443336f15f379cd6955b.tar.bz2 connman-5cb8bb1ba90826b09f1e443336f15f379cd6955b.zip |
Fix get-proxy-autoconfig method checking
The script should check for the "auto" method, not the "auto-config".
Fixes BMC#9178
Diffstat (limited to 'test')
-rwxr-xr-x | test/get-proxy-autoconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/get-proxy-autoconfig b/test/get-proxy-autoconfig index 33db0be9..a93605ab 100755 --- a/test/get-proxy-autoconfig +++ b/test/get-proxy-autoconfig @@ -28,7 +28,7 @@ for entry in services: method = proxy["Method"] print "Method = %s" % (method) - if method in ["auto-config"]: + if method in ["auto"]: url = proxy["URL"] print "URL = %s" % (url) print |