Merge "Not suppressing exceptions in tests." into ub-launcher3-master

This commit is contained in:
TreeHugger Robot
2019-01-30 18:27:49 +00:00
committed by Android (Google) Code Review
@@ -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);
}