Skip to content

Commit e6f4cd2

Browse files
Treehugger RobotGerrit Code Review
authored andcommitted
Merge "Increase polling timeout to 25s for testStartExposed" into android14-tests-dev
2 parents 68e1926 + 77c6b49 commit e6f4cd2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp1/src/com/android/cts/ephemeralapp1

hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp1/src/com/android/cts/ephemeralapp1/ClientTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1468,12 +1468,12 @@ private boolean handlesWebUris(IntentFilter filter) {
14681468
private TestResult getResult() {
14691469
final TestResult result;
14701470
try {
1471-
result = mResultQueue.poll(5, TimeUnit.SECONDS);
1471+
result = mResultQueue.poll(25, TimeUnit.SECONDS);
14721472
} catch (InterruptedException e) {
14731473
throw new RuntimeException(e);
14741474
}
14751475
if (result == null) {
1476-
throw new IllegalStateException("Activity didn't receive a Result in 5 seconds");
1476+
throw new IllegalStateException("Activity didn't receive a Result in 25 seconds");
14771477
}
14781478
return result;
14791479
}

0 commit comments

Comments
 (0)