Remove debug timeout multiplier.

It looks like this was added accidentally in <unknown commit>.

PiperOrigin-RevId: 493834134
This commit is contained in:
tonihei 2022-12-08 10:09:55 +00:00 committed by Ian Baker
parent c07bd76676
commit 533f5288f4

View File

@ -96,7 +96,7 @@ public final class RobolectricUtil {
*/ */
public static void runLooperUntil(Looper looper, Supplier<Boolean> condition) public static void runLooperUntil(Looper looper, Supplier<Boolean> condition)
throws TimeoutException { throws TimeoutException {
runLooperUntil(looper, condition, DEFAULT_TIMEOUT_MS * 1000000, Clock.DEFAULT); runLooperUntil(looper, condition, DEFAULT_TIMEOUT_MS, Clock.DEFAULT);
} }
/** /**