Brian O'Connor

adjusting wait time in intent push test command

Change-Id: Ibd985e0d0e62755017f64265c42bf3f476e655f7
......@@ -157,7 +157,7 @@ public class IntentPushTestCommand extends AbstractShellCommand
}
try {
if (latch.await(100 + count * 200, TimeUnit.MILLISECONDS)) {
if (latch.await(200 + count * 10, TimeUnit.MILLISECONDS)) {
printResults(count);
} else {
print("Failure: %d intents not installed", latch.getCount());
......