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

Commit b821d5df authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

parents d655eb2f c5e3f946
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
    }