Merge "More robust tests." into tm-qpr-dev

This commit is contained in:
Alex Buynytskyy
2023-05-15 22:32:48 +00:00
committed by Android (Google) Code Review

View File

@@ -197,10 +197,11 @@ public class PackageManagerTests extends AndroidTestCase {
} }
public Intent getResult() { public Intent getResult() {
try { while (true) {
return mResult.take(); try {
} catch (InterruptedException e) { return mResult.take();
throw new RuntimeException(e); } catch (InterruptedException e) {
}
} }
} }
} }