Not suppressing exceptions in tests.

This makes it harder to diagnose problems.

Bug: 117888000
Test: all tests affected by the change
Change-Id: I354e86af0929531653cf59ce1eb6435018c20e1a
This commit is contained in:
vadimt 2019-01-29 16:52:22 -08:00
parent b3ca6aee2c
commit c5e3f9463d
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}