Brian O'Connor

updating timeout in IntentPushTestCommand

Change-Id: Idce7b7ff0c94668bb8e93eb2ee7c273b3560f233
...@@ -157,7 +157,7 @@ public class IntentPushTestCommand extends AbstractShellCommand ...@@ -157,7 +157,7 @@ public class IntentPushTestCommand extends AbstractShellCommand
157 } 157 }
158 158
159 try { 159 try {
160 - if (latch.await(200 + count * 10, TimeUnit.MILLISECONDS)) { 160 + if (latch.await(500 + count * 30, TimeUnit.MILLISECONDS)) {
161 printResults(count); 161 printResults(count);
162 } else { 162 } else {
163 print("Failure: %d intents not installed", latch.getCount()); 163 print("Failure: %d intents not installed", latch.getCount());
......