diff --git a/tests/src/com/android/launcher3/util/Wait.java b/tests/src/com/android/launcher3/util/Wait.java index 0e41c0206b..593cce832b 100644 --- a/tests/src/com/android/launcher3/util/Wait.java +++ b/tests/src/com/android/launcher3/util/Wait.java @@ -23,7 +23,7 @@ public class Wait { return; } } catch (Throwable t) { - // Ignore + throw new RuntimeException(t); } SystemClock.sleep(sleepMillis); } @@ -34,7 +34,7 @@ public class Wait { return; } } catch (Throwable t) { - // Ignore + throw new RuntimeException(t); } Assert.fail(message); }