Data call establish time is related to network condition which can’t be controlled by the device.

Extend the time limitation to 30 seconds to cover most of the cases.

Change-Id: I522f7eb23baa9a652fb3fd633d200cd6307180c8
This commit is contained in:
android-htc-contribute
2011-10-05 11:09:36 +08:00
committed by Brian Muramatsu
parent 8670b1c23f
commit 0c292bb117

View File

@@ -287,7 +287,7 @@ public class ConnectivityManagerTest extends AndroidTestCase {
}
public boolean waitForConnection() throws InterruptedException {
return mReceiveLatch.await(10, TimeUnit.SECONDS);
return mReceiveLatch.await(30, TimeUnit.SECONDS);
}
}
}