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

Commit c5e3f946 authored by vadimt's avatar vadimt
Browse files

Not suppressing exceptions in tests.

This makes it harder to diagnose problems.

Bug: 117888000
Test: all tests affected by the change
Change-Id: I354e86af0929531653cf59ce1eb6435018c20e1a
parent b3ca6aee
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);
    }