Commit 45664162 by tonihei Committed by christosts

Remove debug timeout multiplier.

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

PiperOrigin-RevId: 493834134
(cherry picked from commit f8e4e176)
parent a599289b
...@@ -94,7 +94,7 @@ public final class RobolectricUtil { ...@@ -94,7 +94,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);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment