Revert back to waiting 10s to cool down

After the tests ran for a couple of weeks, no significant changes were
detected. However, some tests started to crash more often. Since we are
not sure if it is due to the testing platform or due to the change in
wait time, we are reverting to the amount used on the original
investigation.

Bug: 261621873
Test: atest UserLifecycleTests
Change-Id: I0bf137503f153993d7067c71b4e6f303e58031a7
This commit is contained in:
João Victor Mendes Freire
2023-03-02 11:15:27 -03:00
parent 52da5481e0
commit e1a0be11c3

View File

@@ -1555,8 +1555,8 @@ public class UserLifecycleTests {
private void waitCoolDownPeriod() {
// Heuristic value based on local tests. Stability increased compared to no waiting.
final int fiveSeconds = 1000 * 5;
final int tenSeconds = 1000 * 10;
waitForBroadcastIdle();
sleep(fiveSeconds);
sleep(tenSeconds);
}
}