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

Commit 6c9e4bd1 authored by David Saff's avatar David Saff Committed by Android (Google) Code Review
Browse files

Merge "Try waiting longer for temp folder availability" into main

parents 28a93cd6 53c15245
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--;