diff options
author | Eric Rowe <erowe@google.com> | 2014-09-05 16:59:51 -0700 |
---|---|---|
committer | Eric Rowe <erowe@google.com> | 2014-09-05 16:59:51 -0700 |
commit | f5031e549472d1d813fa39b6b2973cd20c1b1120 (patch) | |
tree | b9b649ad60567b9c3e7a678c89962e1f63648943 | |
parent | 2591e00b57b8aedd9e44fecce3f55a2c6a5428c2 (diff) | |
download | frameworks_base-f5031e549472d1d813fa39b6b2973cd20c1b1120.zip frameworks_base-f5031e549472d1d813fa39b6b2973cd20c1b1120.tar.gz frameworks_base-f5031e549472d1d813fa39b6b2973cd20c1b1120.tar.bz2 |
Increase long timeout to 2 minutes
Change-Id: I2f9e15c6e551536d61ec52fbaf7f54405fa05bcd
-rw-r--r-- | core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ConnectivityManagerTestBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ConnectivityManagerTestBase.java b/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ConnectivityManagerTestBase.java index a3c5351..77e1c53 100644 --- a/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ConnectivityManagerTestBase.java +++ b/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ConnectivityManagerTestBase.java @@ -54,7 +54,7 @@ public class ConnectivityManagerTestBase extends InstrumentationTestCase { protected static final int WAIT_FOR_SCAN_RESULT = 10 * 1000; //10 seconds protected static final int WIFI_SCAN_TIMEOUT = 50 * 1000; // 50 seconds protected static final int SHORT_TIMEOUT = 5 * 1000; // 5 seconds - protected static final long LONG_TIMEOUT = 50 * 1000; // 50 seconds + protected static final long LONG_TIMEOUT = 2 * 60 * 1000; // 2 minutes protected static final long WIFI_CONNECTION_TIMEOUT = 5 * 60 * 1000; // 5 minutes // 2 minutes timer between wifi stop and start protected static final long WIFI_STOP_START_INTERVAL = 2 * 60 * 1000; // 2 minutes |