diff options
author | Dan Williams <dcbw@redhat.com> | 2009-11-29 21:49:46 -0800 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2009-11-29 21:49:46 -0800 |
commit | 01db3f1c2fad716088563fb7e91720691fd962d4 (patch) | |
tree | 9c492925a037374c7e76144c374cbad22be2c766 | |
parent | c8fdb592e3500177c3267b9eefd4afebed58bb64 (diff) |
test: give connect a bit more time
Registration can be part of the connect process, which can take quite a while.
-rwxr-xr-x | test/mm-test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mm-test.py b/test/mm-test.py index cb6bad2b..bbd634df 100755 --- a/test/mm-test.py +++ b/test/mm-test.py @@ -229,7 +229,7 @@ def gsm_connect(proxy, apn, user, password): # Modem.Simple interface simple = dbus.Interface(proxy, dbus_interface=MM_DBUS_INTERFACE_MODEM_SIMPLE) try: - simple.Connect({'apn': apn, 'number':"*99#"}, timeout=60) + simple.Connect({'apn': apn, 'number':"*99#"}, timeout=120) print "\nConnected!" except Exception, e: print "Error connecting: %s" % e |