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

Commit 30874b77 authored by Cosmin Băieș's avatar Cosmin Băieș
Browse files

Ensure waitOnMainUntil runs on the main thread

Test: n/a
Bug: 296390700
Change-Id: I1c0a024ef6e645e6f3d9b2b041879455903be533
parent 92e3f280
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -154,7 +154,7 @@ public final class ImeStressTestUtil {
     * <p>The given {@code pred} will be called on the main thread.
     * <p>The given {@code pred} will be called on the main thread.
     */
     */
    public static void waitOnMainUntil(String message, Callable<Boolean> pred) {
    public static void waitOnMainUntil(String message, Callable<Boolean> pred) {
        eventually(() -> assertWithMessage(message).that(pred.call()).isTrue(), TIMEOUT);
        eventually(() -> assertWithMessage(message).that(callOnMainSync(pred)).isTrue(), TIMEOUT);
    }
    }


    /** Waits until IME is shown, or throws on timeout. */
    /** Waits until IME is shown, or throws on timeout. */