Brian O'Connor

adjusting wait time in intent push test command

Change-Id: Ibd985e0d0e62755017f64265c42bf3f476e655f7
...@@ -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(100 + count * 200, TimeUnit.MILLISECONDS)) { 160 + if (latch.await(200 + count * 10, 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());
......