AndroidTest: Increase timeout

This commit is contained in:
2016-07-14 11:54:15 -04:00
parent cc1e56894b
commit cf98d1a5c3

View File

@@ -135,6 +135,6 @@ public class BaseAndroidTest
protected void awaitLatch() throws InterruptedException protected void awaitLatch() throws InterruptedException
{ {
assertTrue(latch.await(5, TimeUnit.SECONDS)); assertTrue(latch.await(60, TimeUnit.SECONDS));
} }
} }