Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53c15245 authored by David Saff's avatar David Saff
Browse files

Try waiting longer for temp folder availability

Bug: 417086281
Test: presubmit
Flag: TEST_ONLY
Change-Id: Ic9a9dd4e35558bc2efa551e7a678b8661af92343
parent 838177fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ public abstract class SysuiTestCase {
    private static void attemptToCreateTempFile() throws RuntimeException {
        // If I understand https://buganizer.corp.google.com/issues/123230176#comment11 correctly,
        // we may have to wait for the temp folder to become available.
        int retriesRemaining = 20;
        int retriesRemaining = 40;
        IOException latestFailure = null;
        while (sCanCreateTempFiles == null && retriesRemaining > 0) {
            retriesRemaining--;